From acb29aed679cfcf97becb3b54a993046b2eeca65 Mon Sep 17 00:00:00 2001 From: Skip Montanaro Date: Mon, 25 Mar 2002 22:04:23 +0000 Subject: make default banner match what the real interpreter displays --- Lib/code.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Lib/code.py') diff --git a/Lib/code.py b/Lib/code.py index 64b7bc086b7..b7a5af908ce 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, -- cgit v1.2.3