Commit fa6013cf authored by Guido van Rossum's avatar Guido van Rossum

Don't emit 8 lines of (c) information at startup -- use the same text

as main.c.
parent 8ff4cd75
......@@ -429,10 +429,13 @@ class PyShell(OutputWindow):
def short_title(self):
return self.shell_title
COPYRIGHT = \
'Type "copyright", "credits" or "license" for more information.'
def begin(self):
self.resetoutput()
self.write("Python %s on %s\n%s\nIDLE %s -- press F1 for help\n" %
(sys.version, sys.platform, sys.copyright,
(sys.version, sys.platform, self.COPYRIGHT,
idlever.IDLE_VERSION))
try:
sys.ps1
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment