bpo-33856: Add "help" to the welcome message of IDLE (GH-7755)
Make it the same as when one runs 'python'.
(cherry picked from commit 9d49f85064
)
Co-authored-by: Stéphane Wirtel <stephane@wirtel.be>
This commit is contained in:
parent
833b3d2dcc
commit
25531fb7b8
|
@ -1033,7 +1033,7 @@ class PyShell(OutputWindow):
|
||||||
return self.shell_title
|
return self.shell_title
|
||||||
|
|
||||||
COPYRIGHT = \
|
COPYRIGHT = \
|
||||||
'Type "copyright", "credits" or "license()" for more information.'
|
'Type "help", "copyright", "credits" or "license()" for more information.'
|
||||||
|
|
||||||
def begin(self):
|
def begin(self):
|
||||||
self.text.mark_set("iomark", "insert")
|
self.text.mark_set("iomark", "insert")
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
Add "help" in the welcome message of IDLE
|
Loading…
Reference in New Issue