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:
Miss Islington (bot) 2018-06-16 14:44:01 -07:00 committed by GitHub
parent 833b3d2dcc
commit 25531fb7b8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -1033,7 +1033,7 @@ class PyShell(OutputWindow):
return self.shell_title
COPYRIGHT = \
'Type "copyright", "credits" or "license()" for more information.'
'Type "help", "copyright", "credits" or "license()" for more information.'
def begin(self):
self.text.mark_set("iomark", "insert")

View File

@ -0,0 +1 @@
Add "help" in the welcome message of IDLE