mirror of
https://github.com/python/cpython.git
synced 2025-07-30 14:44:10 +00:00
Tkinter rename, step 2: fix imports and add stub modules.
This commit is contained in:
parent
bbc57d73a0
commit
ad9afeb8f0
53 changed files with 206 additions and 85 deletions
|
@ -3,9 +3,9 @@ import os
|
|||
import re
|
||||
import imp
|
||||
from itertools import count
|
||||
from Tkinter import *
|
||||
import tkSimpleDialog
|
||||
import tkMessageBox
|
||||
from tkinter import *
|
||||
import tkinter.simpledialog as tkSimpleDialog
|
||||
import tkinter.messagebox as tkMessageBox
|
||||
from MultiCall import MultiCallCreator
|
||||
|
||||
import webbrowser
|
||||
|
@ -45,7 +45,7 @@ class EditorWindow(object):
|
|||
from UndoDelegator import UndoDelegator
|
||||
from IOBinding import IOBinding, filesystemencoding, encoding
|
||||
import Bindings
|
||||
from Tkinter import Toplevel
|
||||
from tkinter import Toplevel
|
||||
from MultiStatusBar import MultiStatusBar
|
||||
|
||||
help_url = None
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue