2002-12-24 02:36:19 -04:00
|
|
|
try:
|
|
|
|
import idlelib.PyShell
|
2002-12-31 19:18:00 -04:00
|
|
|
except ImportError:
|
2002-12-24 02:36:19 -04:00
|
|
|
# IDLE is not installed, but maybe PyShell is on sys.path:
|
2003-05-17 00:15:48 -03:00
|
|
|
try:
|
|
|
|
import PyShell
|
|
|
|
except ImportError:
|
2003-05-18 23:07:44 -03:00
|
|
|
raise
|
2003-05-17 00:15:48 -03:00
|
|
|
else:
|
|
|
|
import os
|
|
|
|
idledir = os.path.dirname(os.path.abspath(PyShell.__file__))
|
|
|
|
if idledir != os.getcwd():
|
|
|
|
# We're not in the IDLE directory, help the subprocess find run.py
|
|
|
|
pypath = os.environ.get('PYTHONPATH', '')
|
2003-05-24 18:01:39 -03:00
|
|
|
if pypath:
|
|
|
|
os.environ['PYTHONPATH'] = pypath + ':' + idledir
|
|
|
|
else:
|
|
|
|
os.environ['PYTHONPATH'] = idledir
|
2003-05-17 00:15:48 -03:00
|
|
|
PyShell.main()
|
2003-01-02 13:09:34 -04:00
|
|
|
else:
|
|
|
|
idlelib.PyShell.main()
|