summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKurt B. Kaiser <kbk@shore.net>2009-05-03 01:03:44 (GMT)
committerKurt B. Kaiser <kbk@shore.net>2009-05-03 01:03:44 (GMT)
commit106ac46b3fb4751fb19a0e7b429c7ad3f71dc345 (patch)
treeb9da6c1deae4c57631a723ec5f4fd1f70cbc4c3f
parent07ef487a96b826584f7871629c4cc4754e41242b (diff)
downloadcpython-106ac46b3fb4751fb19a0e7b429c7ad3f71dc345.zip
cpython-106ac46b3fb4751fb19a0e7b429c7ad3f71dc345.tar.gz
cpython-106ac46b3fb4751fb19a0e7b429c7ad3f71dc345.tar.bz2
idle.py modified and simplified to better support
developing experimental versions of IDLE which are not installed in the standard location.
-rw-r--r--Lib/idlelib/NEWS.txt3
-rw-r--r--Lib/idlelib/idle.py32
2 files changed, 14 insertions, 21 deletions
diff --git a/Lib/idlelib/NEWS.txt b/Lib/idlelib/NEWS.txt
index a7ac7b7..fee9c61 100644
--- a/Lib/idlelib/NEWS.txt
+++ b/Lib/idlelib/NEWS.txt
@@ -3,6 +3,9 @@ What's New in IDLE 2.7a0?
*Release date: XX-XXX-2009*
+- idle.py modified and simplified to better support developing experimental
+ versions of IDLE which are not installed in the standard location.
+
- OutputWindow/PyShell right click menu "Go to file/line" wasn't working with
file paths containing spaces. Bug 5559.
diff --git a/Lib/idlelib/idle.py b/Lib/idlelib/idle.py
index 537dd5a..a249557 100644
--- a/Lib/idlelib/idle.py
+++ b/Lib/idlelib/idle.py
@@ -1,21 +1,11 @@
-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()
+import os.path
+import sys
+
+# If we are working on a development version of IDLE, we need to prepend the
+# parent of this idlelib dir to sys.path. Otherwise, importing idlelib gets
+# the version installed with the Python used to call this module:
+idlelib_dir = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
+sys.path.insert(0, idlelib_dir)
+
+import idlelib.PyShell
+idlelib.PyShell.main()