]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[2.7] bpo-33856: Add "help" to the welcome message of IDLE (GH-7755) (GH-7758)
authorTerry Jan Reedy <tjreedy@udel.edu>
Sat, 16 Jun 2018 22:15:18 +0000 (18:15 -0400)
committerGitHub <noreply@github.com>
Sat, 16 Jun 2018 22:15:18 +0000 (18:15 -0400)
Make it the same as when one runs 'python'..
(cherry picked from commit 9d49f85064c388e2dddb9f8cb4ae1f486bc8d357)

Co-authored-by: Stéphane Wirtel <stephane@wirtel.be>
Lib/idlelib/PyShell.py
Misc/NEWS.d/next/IDLE/2018-06-16-21-54-45.bpo-33856.TH8WHU.rst [new file with mode: 0644]

index fdd7cb1c4e8cd7869c097564357e6350b27c3b79..337530ab8864e3c5bb12f3a8b42b67382b8aa0f2 100755 (executable)
@@ -1040,7 +1040,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.resetoutput()
diff --git a/Misc/NEWS.d/next/IDLE/2018-06-16-21-54-45.bpo-33856.TH8WHU.rst b/Misc/NEWS.d/next/IDLE/2018-06-16-21-54-45.bpo-33856.TH8WHU.rst
new file mode 100644 (file)
index 0000000..058f96e
--- /dev/null
@@ -0,0 +1 @@
+Add "help" in the welcome message of IDLE