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
This commit is contained in:
Kurt B. Kaiser 2002-12-21 21:03:06 +00:00
parent 9c36c29156
commit dd70e1be91
3 changed files with 24 additions and 23 deletions

View file

@ -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__