diff options
author | Kurt B. Kaiser <kbk@shore.net> | 2002-12-21 21:03:06 (GMT) |
---|---|---|
committer | Kurt B. Kaiser <kbk@shore.net> | 2002-12-21 21:03:06 (GMT) |
commit | dd70e1be91dcf4d20150f11cc0262c9e623b1fae (patch) | |
tree | 8aa283341bda49e2953e10629c5f8406586e2297 /Lib/idlelib/PyShell.py | |
parent | 9c36c29156bf7d6f2349a2ca577771dd68fe63a9 (diff) | |
download | cpython-dd70e1be91dcf4d20150f11cc0262c9e623b1fae.zip cpython-dd70e1be91dcf4d20150f11cc0262c9e623b1fae.tar.gz cpython-dd70e1be91dcf4d20150f11cc0262c9e623b1fae.tar.bz2 |
M PyShell.py
M idle
M setup.py
To be able to run from the source directory or from an installed version
of IDLE, and also to allow the subprocess to find run(), Python needs to
have the idlelib package on its path.
1. Modify setup.py to supply a .pth file living at same level as idlelib
2. Move boolcheck to PyShell.py
3. Remove boolcheck and path setting code from the "idle" script
Diffstat (limited to 'Lib/idlelib/PyShell.py')
-rw-r--r-- | Lib/idlelib/PyShell.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/idlelib/PyShell.py b/Lib/idlelib/PyShell.py index e13bafc..2abde13 100644 --- a/Lib/idlelib/PyShell.py +++ b/Lib/idlelib/PyShell.py @@ -29,6 +29,8 @@ import idlever import rpc import RemoteDebugger +import boolcheck + IDENTCHARS = string.ascii_letters + string.digits + "_" # Change warnings module to write to sys.__stderr__ |