diff options
| author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2020-09-24 20:07:49 (GMT) |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-09-24 20:07:49 (GMT) |
| commit | 4080f12ccccb17cee36732758912dc4346ec9361 (patch) | |
| tree | 99cc0b5ac690c5af878745300f598e5936fcb437 /Lib/idlelib/pyshell.py | |
| parent | ca8d46dd422e5aa10f444796d93faec5a8cbc1e0 (diff) | |
| download | cpython-4080f12ccccb17cee36732758912dc4346ec9361.zip cpython-4080f12ccccb17cee36732758912dc4346ec9361.tar.gz cpython-4080f12ccccb17cee36732758912dc4346ec9361.tar.bz2 | |
bpo-41775: Make 'IDLE Shell' the shell title (GH-22399)
'Python Shell' may have contributed to some beginners confusing 'IDLE' with ' Python'.
(cherry picked from commit 05cc881cbcf5d73a312568c78c7149eae3195072)
Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
Diffstat (limited to 'Lib/idlelib/pyshell.py')
| -rwxr-xr-x | Lib/idlelib/pyshell.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/pyshell.py b/Lib/idlelib/pyshell.py index 66ae0f7..b69916d 100755 --- a/Lib/idlelib/pyshell.py +++ b/Lib/idlelib/pyshell.py @@ -833,7 +833,7 @@ class ModifiedInterpreter(InteractiveInterpreter): class PyShell(OutputWindow): - shell_title = "Python " + python_version() + " Shell" + shell_title = "IDLE Shell " + python_version() # Override classes ColorDelegator = ModifiedColorDelegator |
