Renamed module tkinter to _tkinter

This commit is contained in:
Jack Jansen 1995-10-23 14:36:05 +00:00
parent f39ca24ebc
commit 10d0f8fc40
7 changed files with 37 additions and 36 deletions

View file

@ -2,6 +2,7 @@
import regex
from Tkinter import *
from Tkinter import _tkinter
from ScrolledText import ScrolledText
# XXX These fonts may have to be changed to match your system
@ -44,7 +45,7 @@ class EditableManPage(ScrolledText):
# Parse a file, in the background
def asyncparsefile(self, fp):
self._startparser(fp)
self.tk.createfilehandler(fp, tkinter.READABLE,
self.tk.createfilehandler(fp, _tkinter.READABLE,
self._filehandler)
parsefile = asyncparsefile # Alias