diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2020-09-24 19:30:09 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-24 19:30:09 (GMT) |
commit | 05cc881cbcf5d73a312568c78c7149eae3195072 (patch) | |
tree | f2588f9878fe719b95fe92d99ee99de1627b056b /Lib/idlelib/pyshell.py | |
parent | d67de0a30d76c6a28056bae22fd7d13f2e111b77 (diff) | |
download | cpython-05cc881cbcf5d73a312568c78c7149eae3195072.zip cpython-05cc881cbcf5d73a312568c78c7149eae3195072.tar.gz cpython-05cc881cbcf5d73a312568c78c7149eae3195072.tar.bz2 |
bpo-41775: Make 'IDLE Shell' the shell title (#22399)
'Python Shell' may have contributed to some beginners confusing 'IDLE' with ' Python'.
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 |