summaryrefslogtreecommitdiff
path: root/Lib/idlelib/pyshell.py
diff options
context:
space:
mode:
authorTerry Jan Reedy <tjreedy@udel.edu>2020-09-24 15:30:09 -0400
committerGitHub <noreply@github.com>2020-09-24 15:30:09 -0400
commit05cc881cbcf5d73a312568c78c7149eae3195072 (patch)
treef2588f9878fe719b95fe92d99ee99de1627b056b /Lib/idlelib/pyshell.py
parentd67de0a30d76c6a28056bae22fd7d13f2e111b77 (diff)
downloadcpython-git-05cc881cbcf5d73a312568c78c7149eae3195072.tar.gz
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-xLib/idlelib/pyshell.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/pyshell.py b/Lib/idlelib/pyshell.py
index 66ae0f7435..b69916dbe8 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