diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 1996-10-23 15:38:26 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 1996-10-23 15:38:26 (GMT) |
commit | 92ca16c3352eb3610551e7d026d38e1636ea6f69 (patch) | |
tree | 3e332863a07963e349f6ff02f6d8d1e52ae548bf /Mac/Tools/twit/twit.py | |
parent | d804bab721208a8691b554443c8cbf1a8ebb6c2d (diff) | |
download | cpython-92ca16c3352eb3610551e7d026d38e1636ea6f69.zip cpython-92ca16c3352eb3610551e7d026d38e1636ea6f69.tar.gz cpython-92ca16c3352eb3610551e7d026d38e1636ea6f69.tar.bz2 |
Modified to work together with BBPy
Re-enabled splash screen
Diffstat (limited to 'Mac/Tools/twit/twit.py')
-rw-r--r-- | Mac/Tools/twit/twit.py | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/Mac/Tools/twit/twit.py b/Mac/Tools/twit/twit.py index 19d6af1..9db908e 100644 --- a/Mac/Tools/twit/twit.py +++ b/Mac/Tools/twit/twit.py @@ -12,9 +12,8 @@ Jack Jansen, CWI, August 1996.""" import os if os.name == 'mac': -# Not supported in distributed 1.4b3: -## import MacOS -## MacOS.splash(515) # Try to show the splash screen + import MacOS + MacOS.splash(515) # Try to show the splash screen import mactwit_app; twit_app = mactwit_app else: try: @@ -32,8 +31,8 @@ import sys def main(): twit_app.Initialize() -## if os.name == 'mac': -## MacOS.splash() + if os.name == 'mac': + MacOS.splash() twit_app.Twit('none', None) def run(statement, globals=None, locals=None): |