diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2014-01-23 05:36:46 (GMT) |
---|---|---|
committer | Terry Jan Reedy <tjreedy@udel.edu> | 2014-01-23 05:36:46 (GMT) |
commit | 94338de49b6eb67efbaae6112787f2596a16d9d6 (patch) | |
tree | eab45846c4ec75d6c03670b6859d12a251020a5c /Lib | |
parent | 09761e7c9cf984b8164c172fcf9f1a5994402495 (diff) | |
download | cpython-94338de49b6eb67efbaae6112787f2596a16d9d6.zip cpython-94338de49b6eb67efbaae6112787f2596a16d9d6.tar.gz cpython-94338de49b6eb67efbaae6112787f2596a16d9d6.tar.bz2 |
Issue #17390: Add Python version to Idle editor window title bar.
Original patches by Edmond Burnett and Kent Johnson.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/idlelib/EditorWindow.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Lib/idlelib/EditorWindow.py b/Lib/idlelib/EditorWindow.py index c9ad364..4bf1111 100644 --- a/Lib/idlelib/EditorWindow.py +++ b/Lib/idlelib/EditorWindow.py @@ -1,6 +1,7 @@ import importlib import importlib.abc import os +from platform import python_version import re import string import sys @@ -955,11 +956,14 @@ 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 self._filename_to_unicode(filename) + return pyversion + self._filename_to_unicode(filename) def long_title(self): # return unicode string to display non-ASCII chars correctly |