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:
parent
d67de0a30d
commit
05cc881cbc
|
@ -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
|
||||
|
|
|
@ -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