diff options
author | Tony Lownds <tony@lownds.com> | 2002-12-24 17:21:43 (GMT) |
---|---|---|
committer | Tony Lownds <tony@lownds.com> | 2002-12-24 17:21:43 (GMT) |
commit | b693f8e4fa15c21980da9e0a90d990c35d99a8e0 (patch) | |
tree | d534229136a0fb663455678b968804546b70960d /Lib | |
parent | 52d134874f1044d004df77ff4a1b3899abaafa11 (diff) | |
download | cpython-b693f8e4fa15c21980da9e0a90d990c35d99a8e0.zip cpython-b693f8e4fa15c21980da9e0a90d990c35d99a8e0.tar.gz cpython-b693f8e4fa15c21980da9e0a90d990c35d99a8e0.tar.bz2 |
Move boolcheck before import of other IDLE modules
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/idlelib/PyShell.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/idlelib/PyShell.py b/Lib/idlelib/PyShell.py index 687b539..f4485bd 100644 --- a/Lib/idlelib/PyShell.py +++ b/Lib/idlelib/PyShell.py @@ -18,6 +18,9 @@ from code import InteractiveInterpreter from Tkinter import * import tkMessageBox +# Preserve 2.2 compatibility for Mac OS X: +import boolcheck + from EditorWindow import EditorWindow, fixwordbreaks from FileList import FileList from ColorDelegator import ColorDelegator @@ -29,9 +32,6 @@ import idlever import rpc import RemoteDebugger -# Preserve 2.2 compatibility for Mac OS X: -import boolcheck - IDENTCHARS = string.ascii_letters + string.digits + "_" # Change warnings module to write to sys.__stderr__ |