[Python-checkins] r69383 - python/branches/release30-maint/Lib/test/test_tcl.py

guilherme.polo python-checkins at python.org
Sat Feb 7 00:39:18 CET 2009


Author: guilherme.polo
Date: Sat Feb  7 00:39:18 2009
New Revision: 69383

Log:
Revert unwanted merge

Modified:
   python/branches/release30-maint/Lib/test/test_tcl.py

Modified: python/branches/release30-maint/Lib/test/test_tcl.py
==============================================================================
--- python/branches/release30-maint/Lib/test/test_tcl.py	(original)
+++ python/branches/release30-maint/Lib/test/test_tcl.py	Sat Feb  7 00:39:18 2009
@@ -4,15 +4,9 @@
 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 ttk import __loadtk__
-Tk._loadtk = __loadtk__
-
 
 class TkinterTest(unittest.TestCase):
 


More information about the Python-checkins mailing list