diff options
author | Tony Lownds <tony@lownds.com> | 2002-12-24 17:22:53 (GMT) |
---|---|---|
committer | Tony Lownds <tony@lownds.com> | 2002-12-24 17:22:53 (GMT) |
commit | e1bebe9cb0407b12d5e5d10d8f3e2c45ff24444d (patch) | |
tree | 81578c91643270c1f531147bd1ac95752d363419 | |
parent | b693f8e4fa15c21980da9e0a90d990c35d99a8e0 (diff) | |
download | cpython-e1bebe9cb0407b12d5e5d10d8f3e2c45ff24444d.zip cpython-e1bebe9cb0407b12d5e5d10d8f3e2c45ff24444d.tar.gz cpython-e1bebe9cb0407b12d5e5d10d8f3e2c45ff24444d.tar.bz2 |
boolcheck cannot be deleted here.
-rw-r--r-- | Lib/idlelib/macosx_main.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/macosx_main.py b/Lib/idlelib/macosx_main.py index 2520a68..b1cf156 100644 --- a/Lib/idlelib/macosx_main.py +++ b/Lib/idlelib/macosx_main.py @@ -35,7 +35,7 @@ if '-p' in sys.argv: # this module will become the namespace used by the interactive # interpreter; remove all variables we have defined. - del sys, __file__, boolcheck, split, join, isdir + del sys, __file__, split, join, isdir __import__('run').main() else: # Load idlelib/idle.py which starts the application. |