summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_tcl.py
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2008-05-18 23:07:07 (GMT)
committerBenjamin Peterson <benjamin@python.org>2008-05-18 23:07:07 (GMT)
commitd21dabc890087fb030ad2f732de9386f0cc03f9c (patch)
treee3859363719184a7b27b59c20bba06f13ba215b4 /Lib/test/test_tcl.py
parent913c15c1c6641195b492837eee1189369abe04b7 (diff)
downloadcpython-d21dabc890087fb030ad2f732de9386f0cc03f9c.zip
cpython-d21dabc890087fb030ad2f732de9386f0cc03f9c.tar.gz
cpython-d21dabc890087fb030ad2f732de9386f0cc03f9c.tar.bz2
change some imports in tests so they will not be skipped in 3.0
Diffstat (limited to 'Lib/test/test_tcl.py')
-rw-r--r--Lib/test/test_tcl.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_tcl.py b/Lib/test/test_tcl.py
index fa170ef..6b41a17 100644
--- a/Lib/test/test_tcl.py
+++ b/Lib/test/test_tcl.py
@@ -3,7 +3,7 @@
import unittest
import os
from test import test_support
-from Tkinter import Tcl
+from tkinter import Tcl
from _tkinter import TclError
class TclTest(unittest.TestCase):