summaryrefslogtreecommitdiff
path: root/lib/python2.7/idlelib/idle.pyw
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2021-06-24 10:34:15 -0700
committerElliott Hughes <enh@google.com>2021-06-24 10:35:21 -0700
commit0b2935e8c71ccee98fa4a5498b90edc97756948f (patch)
tree864c52fff91ada9d6a095df9ed49786356575bf6 /lib/python2.7/idlelib/idle.pyw
parent481790b5f34a2e67e677d04c7fdf1684e64cc413 (diff)
downloaddarwin-x86-android-s-qpr3-beta-1.tar.gz
gdb's no longer supported, and neither are macOS platform builds. Test: treehugger Change-Id: I530f7e66768e021a2d03f9e939b95c37e186e776
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()