Merged revisions 69404 via svnmerge from

svn+ssh://pythondev/python/trunk

........
  r69404 | guilherme.polo | 2009-02-07 00:20:29 -0200 (Sat, 07 Feb 2009) | 2 lines

  Eliminated the need to use ttk.__loadtk__ and the problems related it.
........
This commit is contained in:
Guilherme Polo 2009-02-07 02:33:47 +00:00
parent b2071f8684
commit fa8fba96a6
2 changed files with 39 additions and 34 deletions

View file

@ -4,15 +4,9 @@ import unittest
import os
import _tkinter
from test import support
from tkinter import Tk, Tcl
from tkinter import Tcl
from _tkinter import TclError
# Restore Tkinter.Tk._loadtk that may have been overridden by ttk.
# If this is not done then this test may fail for reasons related
# to ttk only (like failing to load the tile package).
from tkinter.ttk import __loadtk__
Tk._loadtk = __loadtk__
class TkinterTest(unittest.TestCase):