Issue #24759: Revert 13a8782a775e.

This commit is contained in:
Terry Jan Reedy 2015-08-03 18:34:22 -04:00
parent 43cbbe21a7
commit 2f7de53993

View File

@ -23,16 +23,6 @@ except ImportError:
"Your Python may not be configured for Tk. **", file=sys.__stderr__)
sys.exit(1)
import tkinter.messagebox as tkMessageBox
try:
from tkinter import ttk
except:
root = Tk()
root.withdraw()
tkMessageBox.showerror("Idle Cannot Start",
"Idle now requires the tkinter.ttk module from tcl/tk 8.5+.\n"
+ "It found tk %s and no ttk." % TkVersion,
parent=root)
sys.exit(1)
from idlelib.EditorWindow import EditorWindow, fixwordbreaks
from idlelib.FileList import FileList