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 05cc881cbc)

Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
This commit is contained in:
Miss Islington (bot) 2020-09-24 13:08:06 -07:00 committed by GitHub
parent ae462297c0
commit 18e59f587b
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 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

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