mirror of
https://github.com/python/cpython.git
synced 2025-09-27 02:39: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 *
|
from Tkinter import *
|
||||||
import tkMessageBox
|
import tkMessageBox
|
||||||
|
|
||||||
|
# Preserve 2.2 compatibility for Mac OS X:
|
||||||
|
import boolcheck
|
||||||
|
|
||||||
from EditorWindow import EditorWindow, fixwordbreaks
|
from EditorWindow import EditorWindow, fixwordbreaks
|
||||||
from FileList import FileList
|
from FileList import FileList
|
||||||
from ColorDelegator import ColorDelegator
|
from ColorDelegator import ColorDelegator
|
||||||
|
@ -29,9 +32,6 @@ import idlever
|
||||||
import rpc
|
import rpc
|
||||||
import RemoteDebugger
|
import RemoteDebugger
|
||||||
|
|
||||||
# Preserve 2.2 compatibility for Mac OS X:
|
|
||||||
import boolcheck
|
|
||||||
|
|
||||||
IDENTCHARS = string.ascii_letters + string.digits + "_"
|
IDENTCHARS = string.ascii_letters + string.digits + "_"
|
||||||
|
|
||||||
# Change warnings module to write to sys.__stderr__
|
# Change warnings module to write to sys.__stderr__
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue