From c5f15b088fd30157fb587079d47086295b7ed52b Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Sun, 14 Jan 2001 23:04:22 +0000 Subject: Make the copyright message the same as for the "real" interpreter. --- Lib/code.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'Lib/code.py') diff --git a/Lib/code.py b/Lib/code.py index b308a5807c6..3cd33dee48d 100644 --- a/Lib/code.py +++ b/Lib/code.py @@ -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)) -- cgit v1.2.3