diff options
Diffstat (limited to 'Mac/Tools/IDE/PythonIDE.py')
-rw-r--r-- | Mac/Tools/IDE/PythonIDE.py | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/Mac/Tools/IDE/PythonIDE.py b/Mac/Tools/IDE/PythonIDE.py new file mode 100644 index 0000000000..50f76f97f3 --- /dev/null +++ b/Mac/Tools/IDE/PythonIDE.py @@ -0,0 +1,33 @@ +# copyright 1996-1999 Just van Rossum, Letterror. just@letterror.com + +# keep this (__main__) as clean as possible, since we are using +# it like the "normal" interpreter. + +__version__ = '1.0b2' + + +def init(): + import MacOS + MacOS.EnableAppswitch(-1) + + import Qd, QuickDraw + Qd.SetCursor(Qd.GetCursor(QuickDraw.watchCursor).data) + + import Res + try: + Res.GetResource('DITL', 468) + except Res.Error: + # we're not an applet + Res.OpenResFile('Widgets.rsrc') + Res.OpenResFile('PythonIDE.rsrc') + else: + # we're an applet + import sys + if sys.argv[0] not in sys.path: + sys.path[2:2] = [sys.argv[0]] + + +init() +del init + +import PythonIDEMain |