From: Skip Montanaro Date: Mon, 25 Mar 2002 22:04:23 +0000 (+0000) Subject: make default banner match what the real interpreter displays X-Git-Tag: v2.3c1~6332 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=acb29aed679cfcf97becb3b54a993046b2eeca65;p=python make default banner match what the real interpreter displays --- diff --git a/Lib/code.py b/Lib/code.py index 64b7bc086b..b7a5af908c 100644 --- a/Lib/code.py +++ b/Lib/code.py @@ -216,7 +216,7 @@ class InteractiveConsole(InteractiveInterpreter): sys.ps2 except AttributeError: sys.ps2 = "... " - cprt = 'Type "copyright", "credits" or "license" for more information.' + cprt = 'Type "help", "copyright", "credits" or "license" for more information.' if banner is None: self.write("Python %s on %s\n%s\n(%s)\n" % (sys.version, sys.platform, cprt,