summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib
diff options
context:
space:
mode:
authorTerry Jan Reedy <tjreedy@udel.edu>2020-09-24 19:30:09 (GMT)
committerGitHub <noreply@github.com>2020-09-24 19:30:09 (GMT)
commit05cc881cbcf5d73a312568c78c7149eae3195072 (patch)
treef2588f9878fe719b95fe92d99ee99de1627b056b /Lib/idlelib
parentd67de0a30d76c6a28056bae22fd7d13f2e111b77 (diff)
downloadcpython-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')
-rw-r--r--Lib/idlelib/NEWS.txt2
-rwxr-xr-xLib/idlelib/pyshell.py2
2 files changed, 3 insertions, 1 deletions
diff --git a/Lib/idlelib/NEWS.txt b/Lib/idlelib/NEWS.txt
index 38b9864..7540342 100644
--- a/Lib/idlelib/NEWS.txt
+++ b/Lib/idlelib/NEWS.txt
@@ -3,6 +3,8 @@ Released on 2021-10-04?
======================================
+bpo-41775: Make 'IDLE Shell' the shell title.
+
bpo-35764: Rewrite the Calltips doc section.
bpo-40181: In calltips, stop reminding that '/' marks the end of
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