Show the MacPython IDE version in the interactive banner.

This commit is contained in:
Just van Rossum 2001-08-06 11:12:18 +00:00
parent 1fbad002d7
commit e6e745fc49
1 changed files with 4 additions and 1 deletions

View File

@ -47,8 +47,11 @@ class ConsoleTextWidget(W.EditText):
self._namespace = dict
def open(self):
import __main__
W.EditText.open(self)
self.write('Python ' + sys.version + '\nType "copyright", "credits" or "license" for more information.\n')
self.write('Python %s\n' % sys.version)
self.write('Type "copyright", "credits" or "license" for more information.\n')
self.write('MacPython IDE %s\n' % __main__.__version__)
self.write(sys.ps1)
self.flush()