diff options
author | Roger Serwy <roger.serwy@gmail.com> | 2013-04-09 01:57:13 (GMT) |
---|---|---|
committer | Roger Serwy <roger.serwy@gmail.com> | 2013-04-09 01:57:13 (GMT) |
commit | 0803a3956165ac8d80824367b97564f1ced427c8 (patch) | |
tree | 3d718ebaade7947adcdb1d1eaef5088bceae53d0 /Lib | |
parent | 7e69f0085e5365347bf00f4ed08d07e5f4785a96 (diff) | |
download | cpython-0803a3956165ac8d80824367b97564f1ced427c8.zip cpython-0803a3956165ac8d80824367b97564f1ced427c8.tar.gz cpython-0803a3956165ac8d80824367b97564f1ced427c8.tar.bz2 |
#17657: Show full Tk version in IDLE's about dialog.
Patch by Todd Rovito.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/idlelib/aboutDialog.py | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/Lib/idlelib/aboutDialog.py b/Lib/idlelib/aboutDialog.py index cfccc0f..7fe1ab8 100644 --- a/Lib/idlelib/aboutDialog.py +++ b/Lib/idlelib/aboutDialog.py @@ -66,12 +66,7 @@ class AboutDialog(Toplevel): labelPythonVer = Label(frameBg, text='Python version: ' + \ sys.version.split()[0], fg=self.fg, bg=self.bg) labelPythonVer.grid(row=9, column=0, sticky=W, padx=10, pady=0) - # handle weird tk version num in windoze python >= 1.6 (?!?) - tkVer = repr(TkVersion).split('.') - tkVer[len(tkVer)-1] = str('%.3g' % (float('.'+tkVer[len(tkVer)-1])))[2:] - if tkVer[len(tkVer)-1] == '': - tkVer[len(tkVer)-1] = '0' - tkVer = '.'.join(tkVer) + tkVer = self.tk.call('info', 'patchlevel') labelTkVer = Label(frameBg, text='Tk version: '+ tkVer, fg=self.fg, bg=self.bg) labelTkVer.grid(row=9, column=1, sticky=W, padx=2, pady=0) |