]> granicus.if.org Git - python/commitdiff
Make the copyright message the same as for the "real" interpreter.
authorGuido van Rossum <guido@python.org>
Sun, 14 Jan 2001 23:04:22 +0000 (23:04 +0000)
committerGuido van Rossum <guido@python.org>
Sun, 14 Jan 2001 23:04:22 +0000 (23:04 +0000)
Lib/code.py

index b308a5807c6084659f091c121101686608ab14bb..3cd33dee48db2b08228ca996c40981a0dddfc982 100644 (file)
@@ -216,9 +216,10 @@ class InteractiveConsole(InteractiveInterpreter):
             sys.ps2
         except AttributeError:
             sys.ps2 = "... "
+        cprt = 'Type "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, sys.copyright,
+                       (sys.version, sys.platform, cprt,
                         self.__class__.__name__))
         else:
             self.write("%s\n" % str(banner))