]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-41775: Make 'IDLE Shell' the shell title (#22399)
authorTerry Jan Reedy <tjreedy@udel.edu>
Thu, 24 Sep 2020 19:30:09 +0000 (15:30 -0400)
committerGitHub <noreply@github.com>
Thu, 24 Sep 2020 19:30:09 +0000 (15:30 -0400)
'Python Shell' may have contributed to some beginners confusing 'IDLE' with ' Python'.

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 38b98644942f9e1abc1f6b26fc488abc0bd666aa..754034200a1f62140ff8efd3e1d96cfa10091eef 100644 (file)
@@ -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
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