summaryrefslogtreecommitdiffstats
path: root/Mac/Tools/twit/twit.py
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>1996-10-23 15:38:26 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>1996-10-23 15:38:26 (GMT)
commit92ca16c3352eb3610551e7d026d38e1636ea6f69 (patch)
tree3e332863a07963e349f6ff02f6d8d1e52ae548bf /Mac/Tools/twit/twit.py
parentd804bab721208a8691b554443c8cbf1a8ebb6c2d (diff)
downloadcpython-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.py9
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):