Skip to content

Commit 4080f12

Browse files
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 05cc881) Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
1 parent ca8d46d commit 4080f12

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

Lib/idlelib/NEWS.txt

+2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ Released on 2020-12-07?
33
======================================
44

55

6+
bpo-41775: Make 'IDLE Shell' the shell title.
7+
68
bpo-35764: Rewrite the Calltips doc section.
79

810
bpo-40181: In calltips, stop reminding that '/' marks the end of

Lib/idlelib/pyshell.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -833,7 +833,7 @@ def display_executing_dialog(self):
833833

834834
class PyShell(OutputWindow):
835835

836-
shell_title = "Python " + python_version() + " Shell"
836+
shell_title = "IDLE Shell " + python_version()
837837

838838
# Override classes
839839
ColorDelegator = ModifiedColorDelegator
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Use 'IDLE Shell' as shell title

0 commit comments

Comments
 (0)