summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib/pyshell.py
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2020-09-24 20:07:49 (GMT)
committerGitHub <noreply@github.com>2020-09-24 20:07:49 (GMT)
commit4080f12ccccb17cee36732758912dc4346ec9361 (patch)
tree99cc0b5ac690c5af878745300f598e5936fcb437 /Lib/idlelib/pyshell.py
parentca8d46dd422e5aa10f444796d93faec5a8cbc1e0 (diff)
downloadcpython-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-xLib/idlelib/pyshell.py2
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