From dd70e1be91dcf4d20150f11cc0262c9e623b1fae Mon Sep 17 00:00:00 2001 From: "Kurt B. Kaiser" Date: Sat, 21 Dec 2002 21:03:06 +0000 Subject: 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 --- Lib/idlelib/PyShell.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'Lib/idlelib/PyShell.py') diff --git a/Lib/idlelib/PyShell.py b/Lib/idlelib/PyShell.py index e13bafcc80f..2abde13316a 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__ -- cgit v1.2.3