diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2014-08-15 01:54:43 (GMT) |
---|---|---|
committer | Terry Jan Reedy <tjreedy@udel.edu> | 2014-08-15 01:54:43 (GMT) |
commit | 0726ddf44903ddcc02c7147c3a2750ea8e6bac22 (patch) | |
tree | 48bd2232d733f46bc7a8880fd989a1dabcd13b1f /Lib/idlelib/EditorWindow.py | |
parent | 547d3bc3a6aea38668a385afd6bbb1e32f25ac65 (diff) | |
download | cpython-0726ddf44903ddcc02c7147c3a2750ea8e6bac22.zip cpython-0726ddf44903ddcc02c7147c3a2750ea8e6bac22.tar.gz cpython-0726ddf44903ddcc02c7147c3a2750ea8e6bac22.tar.bz2 |
Issue #17390: Adjust Editor window title. Remove 'Python', move version to end.
Diffstat (limited to 'Lib/idlelib/EditorWindow.py')
-rw-r--r-- | Lib/idlelib/EditorWindow.py | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/Lib/idlelib/EditorWindow.py b/Lib/idlelib/EditorWindow.py index 94cf314..2855347 100644 --- a/Lib/idlelib/EditorWindow.py +++ b/Lib/idlelib/EditorWindow.py @@ -2,7 +2,7 @@ import importlib import importlib.abc import importlib.util import os -from platform import python_version +import platform import re import string import sys @@ -26,6 +26,8 @@ from idlelib import macosxSupport # 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 @@ class EditorWindow(object): 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 @@ class EditorWindow(object): 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 |