bpo-41775: Make 'IDLE Shell' the shell title (#22399)

'Python Shell' may have contributed to some beginners confusing 'IDLE' with ' Python'.
This commit is contained in:
Terry Jan Reedy 2020-09-24 15:30:09 -04:00 committed by GitHub
parent d67de0a30d
commit 05cc881cbc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 1 deletions

View 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

View File

@ -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

View File

@ -0,0 +1 @@
Use 'IDLE Shell' as shell title