mirror of
https://github.com/python/cpython.git
synced 2025-07-21 02:05:20 +00:00

1. Remove "idle" script, it lives in Tools/scripts/ now. 2. Remove shebang from idle.py, should be called explicitly. 3. Remove obsolete test code from rpc.py; needs unit test.
21 lines
664 B
Python
21 lines
664 B
Python
try:
|
|
import idlelib.PyShell
|
|
except ImportError:
|
|
# IDLE is not installed, but maybe PyShell is on sys.path:
|
|
try:
|
|
import PyShell
|
|
except ImportError:
|
|
raise
|
|
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', '')
|
|
if pypath:
|
|
os.environ['PYTHONPATH'] = pypath + ':' + idledir
|
|
else:
|
|
os.environ['PYTHONPATH'] = idledir
|
|
PyShell.main()
|
|
else:
|
|
idlelib.PyShell.main()
|