[Python-checkins] cpython (2.7): Issue #22632: replace dead link with version-specific doc link.

terry.reedy python-checkins at python.org
Tue Oct 14 22:57:28 CEST 2014


https://hg.python.org/cpython/rev/d411dff4e3d4
changeset:   93054:d411dff4e3d4
branch:      2.7
parent:      93052:108377d0e24f
user:        Terry Jan Reedy <tjreedy at udel.edu>
date:        Tue Oct 14 16:56:36 2014 -0400
summary:
  Issue #22632: replace dead link with version-specific doc link.

files:
  Lib/idlelib/aboutDialog.py |  3 ++-
  1 files changed, 2 insertions(+), 1 deletions(-)


diff --git a/Lib/idlelib/aboutDialog.py b/Lib/idlelib/aboutDialog.py
--- a/Lib/idlelib/aboutDialog.py
+++ b/Lib/idlelib/aboutDialog.py
@@ -62,7 +62,8 @@
                            justify=LEFT, fg=self.fg, bg=self.bg)
         labelEmail.grid(row=6, column=0, columnspan=2,
                         sticky=W, padx=10, pady=0)
-        labelWWW = Label(frameBg, text='www:  http://www.python.org/idle/',
+        labelWWW = Label(frameBg, text='https://docs.python.org/' +
+                         sys.version[:3] + '/library/idle.html',
                          justify=LEFT, fg=self.fg, bg=self.bg)
         labelWWW.grid(row=7, column=0, columnspan=2, sticky=W, padx=10, pady=0)
         Frame(frameBg, borderwidth=1, relief=SUNKEN,

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list