mirror of
https://github.com/python/cpython.git
synced 2025-11-01 18:51:43 +00:00
First Checked In.
This commit is contained in:
parent
f59a89b5e3
commit
40f9b7bd7c
28 changed files with 8612 additions and 0 deletions
33
Mac/Tools/IDE/PythonIDE.py
Normal file
33
Mac/Tools/IDE/PythonIDE.py
Normal file
|
|
@ -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
|
||||
Loading…
Add table
Add a link
Reference in a new issue