mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
Move boolcheck before import of other IDLE modules
This commit is contained in:
parent
52d134874f
commit
b693f8e4fa
1 changed files with 3 additions and 3 deletions
|
@ -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__
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue