Move boolcheck before import of other IDLE modules

This commit is contained in:
Tony Lownds 2002-12-24 17:21:43 +00:00
parent 52d134874f
commit b693f8e4fa

View file

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