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:
parent
ae462297c0
commit
18e59f587b
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
Use 'IDLE Shell' as shell title
|
Loading…
Reference in New Issue