[Python-checkins] cpython (2.7): Issue #17390: Adjust Editor window title. Remove 'Python', move version to end.

terry.reedy python-checkins at python.org
Fri Aug 15 03:55:50 CEST 2014


http://hg.python.org/cpython/rev/6d41f139709b
changeset:   92097:6d41f139709b
branch:      2.7
parent:      92093:b5114747d3ed
user:        Terry Jan Reedy <tjreedy at udel.edu>
date:        Thu Aug 14 21:54:38 2014 -0400
summary:
  Issue #17390: Adjust Editor window title. Remove 'Python', move version to end.

files:
  Lib/idlelib/EditorWindow.py |  9 +++++----
  1 files changed, 5 insertions(+), 4 deletions(-)


diff --git a/Lib/idlelib/EditorWindow.py b/Lib/idlelib/EditorWindow.py
--- a/Lib/idlelib/EditorWindow.py
+++ b/Lib/idlelib/EditorWindow.py
@@ -1,6 +1,6 @@
 import sys
 import os
-from platform import python_version
+import platform
 import re
 import imp
 from Tkinter import *
@@ -22,6 +22,8 @@
 # The default tab setting for a Text widget, in average-width characters.
 TK_TABWIDTH_DEFAULT = 8
 
+_py_version = ' (%s)' % platform.python_version()
+
 def _sphinx_version():
     "Format sys.version_info to produce the Sphinx version string used to install the chm docs"
     major, minor, micro, level, serial = sys.version_info
@@ -944,7 +946,7 @@
         short = self.short_title()
         long = self.long_title()
         if short and long:
-            title = short + " - " + long
+            title = short + " - " + long + _py_version
         elif short:
             title = short
         elif long:
@@ -968,14 +970,13 @@
         self.undo.reset_undo()
 
     def short_title(self):
-        pyversion = "Python " + python_version() + ": "
         filename = self.io.filename
         if filename:
             filename = os.path.basename(filename)
         else:
             filename = "Untitled"
         # return unicode string to display non-ASCII chars correctly
-        return pyversion + self._filename_to_unicode(filename)
+        return self._filename_to_unicode(filename)
 
     def long_title(self):
         # return unicode string to display non-ASCII chars correctly

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


More information about the Python-checkins mailing list