]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-41775: Make 'IDLE Shell' the shell title (GH-22399)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Thu, 24 Sep 2020 20:08:06 +0000 (13:08 -0700)
committerGitHub <noreply@github.com>
Thu, 24 Sep 2020 20:08:06 +0000 (13:08 -0700)
'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>
Lib/idlelib/NEWS.txt
Lib/idlelib/pyshell.py
Misc/NEWS.d/next/IDLE/2020-09-24-14-31-16.bpo-41775.sB8Vre.rst [new file with mode: 0644]

index 5d38a500fe618d3b8aa6a3872a45ddf486480a9c..e538329d978b3529bcd8ebe43d532215eca800b9 100644 (file)
@@ -3,6 +3,8 @@ Released on 2020-12-??
 ======================================
 
 
+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
index 66ae0f7435daba7df06a2d37bc9d4ff66ac382b7..b69916dbe876cae7afce2d6f6aac3850f54def8f 100755 (executable)
@@ -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
diff --git a/Misc/NEWS.d/next/IDLE/2020-09-24-14-31-16.bpo-41775.sB8Vre.rst b/Misc/NEWS.d/next/IDLE/2020-09-24-14-31-16.bpo-41775.sB8Vre.rst
new file mode 100644 (file)
index 0000000..59605fa
--- /dev/null
@@ -0,0 +1 @@
+Use 'IDLE Shell' as shell title