diff options
author | Benjamin Peterson <benjamin@python.org> | 2008-05-18 23:07:07 +0000 |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2008-05-18 23:07:07 +0000 |
commit | d21dabc890087fb030ad2f732de9386f0cc03f9c (patch) | |
tree | e3859363719184a7b27b59c20bba06f13ba215b4 /Lib/test/test_tcl.py | |
parent | 913c15c1c6641195b492837eee1189369abe04b7 (diff) | |
download | cpython-git-d21dabc890087fb030ad2f732de9386f0cc03f9c.tar.gz |
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.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_tcl.py b/Lib/test/test_tcl.py index fa170ef58d..6b41a1778d 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): |