Skip to content

Commit

Permalink
bpo-41775: Make 'IDLE Shell' the shell title (GH-22399)
Browse files Browse the repository at this point in the history
'Python Shell' may have contributed to some beginners confusing 'IDLE' with ' Python'.
(cherry picked from commit 05cc881)

Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
  • Loading branch information
miss-islington and terryjreedy committed Sep 24, 2020
1 parent ae46229 commit 18e59f5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
2 changes: 2 additions & 0 deletions Lib/idlelib/NEWS.txt
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Lib/idlelib/pyshell.py
Expand Up @@ -833,7 +833,7 @@ def display_executing_dialog(self):

class PyShell(OutputWindow):

shell_title = "Python " + python_version() + " Shell"
shell_title = "IDLE Shell " + python_version()

# Override classes
ColorDelegator = ModifiedColorDelegator
Expand Down
@@ -0,0 +1 @@
Use 'IDLE Shell' as shell title

0 comments on commit 18e59f5

Please sign in to comment.