summaryrefslogtreecommitdiff
path: root/Mac/Tools/IDE/PythonIDE.py
blob: 50f76f97f35a2d5f6ad389e97622029814a1826f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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