cpython: 769699f0a760 (original) (raw)

Mercurial > cpython

changeset 83206:769699f0a760 3.3

#17657: Show full Tk version in IDLE's about dialog. Patch by Todd Rovito. [#17657]

Roger Serwy roger.serwy@gmail.com
date Mon, 08 Apr 2013 20:57:13 -0500
parents f78d2605f452
children 50164abbfc98 5c9b36969abc
files Lib/idlelib/aboutDialog.py Misc/NEWS
diffstat 2 files changed, 4 insertions(+), 6 deletions(-)[+] [-] Lib/idlelib/aboutDialog.py 7 Misc/NEWS 3

line wrap: on

line diff

--- a/Lib/idlelib/aboutDialog.py +++ b/Lib/idlelib/aboutDialog.py @@ -66,12 +66,7 @@ class AboutDialog(Toplevel): labelPythonVer = Label(frameBg, text='Python version: ' + [](#l1.4) sys.version.split()[0], fg=self.fg, bg=self.bg) labelPythonVer.grid(row=9, column=0, sticky=W, padx=10, pady=0)

--- a/Misc/NEWS +++ b/Misc/NEWS @@ -38,6 +38,9 @@ Library IDLE ---- +- Issue #17657: Show full Tk version in IDLE's about dialog.