diff options
author | Tony Lownds <tony@lownds.com> | 2002-12-23 18:11:28 +0000 |
---|---|---|
committer | Tony Lownds <tony@lownds.com> | 2002-12-23 18:11:28 +0000 |
commit | 103ee9141082db6537c7957b6e07c74f94489df4 (patch) | |
tree | 82792a4d7fe5669ee98452a2ec9b1ecaff8c3f77 /Lib/idlelib/PyShell.py | |
parent | 4a80a3ec21cd1e34ff1907afe998f8305aafa232 (diff) | |
download | cpython-git-103ee9141082db6537c7957b6e07c74f94489df4.tar.gz |
Move boolcheck to PyShell
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 5b4744e28a..ffdde4ee85 100644 --- a/Lib/idlelib/PyShell.py +++ b/Lib/idlelib/PyShell.py @@ -12,6 +12,8 @@ import traceback import types import exceptions +import boolcheck + import linecache from code import InteractiveInterpreter |