Skip to content

Commit 49027a4

Browse files
committed
Issue #22632: replace dead link with version-specific doc link.
1 parent 65da73c commit 49027a4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Lib/idlelib/aboutDialog.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,8 @@ def CreateWidgets(self):
6262
justify=LEFT, fg=self.fg, bg=self.bg)
6363
labelEmail.grid(row=6, column=0, columnspan=2,
6464
sticky=W, padx=10, pady=0)
65-
labelWWW = Label(frameBg, text='www: http://www.python.org/idle/',
65+
labelWWW = Label(frameBg, text='https://docs.python.org/' +
66+
sys.version[:3] + '/library/idle.html',
6667
justify=LEFT, fg=self.fg, bg=self.bg)
6768
labelWWW.grid(row=7, column=0, columnspan=2, sticky=W, padx=10, pady=0)
6869
Frame(frameBg, borderwidth=1, relief=SUNKEN,

0 commit comments

Comments
 (0)