summaryrefslogtreecommitdiff
path: root/lib/python2.7/idlelib/idle.pyw
diff options
context:
space:
mode:
Diffstat (limited to 'lib/python2.7/idlelib/idle.pyw')
-rw-r--r--lib/python2.7/idlelib/idle.pyw21
1 files changed, 0 insertions, 21 deletions
diff --git a/lib/python2.7/idlelib/idle.pyw b/lib/python2.7/idlelib/idle.pyw
deleted file mode 100644
index 537dd5a..0000000
--- a/lib/python2.7/idlelib/idle.pyw
+++ /dev/null
@@ -1,21 +0,0 @@
-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()