mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
Tkinter, step 2: adapt imports.
This commit is contained in:
parent
3302312383
commit
14fc4270da
50 changed files with 136 additions and 133 deletions
|
@ -9,8 +9,10 @@ Note that tab width in IDLE is currently fixed at eight due to Tk issues.
|
|||
Refer to comments in EditorWindow autoindent code for details.
|
||||
|
||||
"""
|
||||
from Tkinter import *
|
||||
import tkMessageBox, tkColorChooser, tkFont
|
||||
from tkinter import *
|
||||
import tkinter.messagebox as tkMessageBox
|
||||
import tkinter.colorchooser as tkColorChooser
|
||||
import tkinter.font as tkFont
|
||||
import copy
|
||||
|
||||
from idlelib.configHandler import idleConf
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue