diff options
author | Skip Montanaro <skip@pobox.com> | 2002-03-25 22:04:23 (GMT) |
---|---|---|
committer | Skip Montanaro <skip@pobox.com> | 2002-03-25 22:04:23 (GMT) |
commit | acb29aed679cfcf97becb3b54a993046b2eeca65 (patch) | |
tree | 49dfe02acbd3f4fa9115781e3810c97d05f83dfc /Lib/code.py | |
parent | 0679a73c0ec3ddf46f42b8c7d09d97730bd386cd (diff) | |
download | cpython-acb29aed679cfcf97becb3b54a993046b2eeca65.zip cpython-acb29aed679cfcf97becb3b54a993046b2eeca65.tar.gz cpython-acb29aed679cfcf97becb3b54a993046b2eeca65.tar.bz2 |
make default banner match what the real interpreter displays
Diffstat (limited to 'Lib/code.py')
-rw-r--r-- | Lib/code.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/code.py b/Lib/code.py index 64b7bc0..b7a5af9 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, |