Commit 1521fdae authored by Kurt B. Kaiser's avatar Kurt B. Kaiser

Merged revisions 72226 via svnmerge from

svn+ssh://pythondev@svn.python.org/python/trunk

........
  r72226 | kurt.kaiser | 2009-05-02 21:03:44 -0400 (Sat, 02 May 2009) | 3 lines

  idle.py modified and simplified to better support
  developing experimental versions of IDLE which are
  not installed in the standard location.
........
parent cef4b81f
...@@ -30,6 +30,9 @@ What's New in IDLE 2.7? (UNRELEASED, but merged into 3.1 releases above.) ...@@ -30,6 +30,9 @@ What's New in IDLE 2.7? (UNRELEASED, but merged into 3.1 releases above.)
*Release date: XX-XXX-2009* *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 - OutputWindow/PyShell right click menu "Go to file/line" wasn't working with
file paths containing spaces. Bug 5559. file paths containing spaces. Bug 5559.
......
try: import os.path
import idlelib, idlelib.PyShell import sys
except ImportError:
# IDLE is not installed, but maybe PyShell is on sys.path: # If we are working on a development version of IDLE, we need to prepend the
print("*** idle.py import error! Trying alternate approach....") # parent of this idlelib dir to sys.path. Otherwise, importing idlelib gets
try: # the version installed with the Python used to call this module:
import PyShell idlelib_dir = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
except ImportError: sys.path.insert(0, idlelib_dir)
raise
else: import idlelib.PyShell
import os idlelib.PyShell.main()
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()
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment