diff options
author | Georg Brandl <georg@python.org> | 2008-05-25 11:53:14 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-05-25 11:53:14 (GMT) |
commit | 3b4b45bfe546b023383d4382af7767359390e264 (patch) | |
tree | d3258b646acce594579986b906f877505810ba41 /Lib | |
parent | 52b92cc16b3126c79fa1196954015f7dc4543f54 (diff) | |
download | cpython-3b4b45bfe546b023383d4382af7767359390e264.zip cpython-3b4b45bfe546b023383d4382af7767359390e264.tar.gz cpython-3b4b45bfe546b023383d4382af7767359390e264.tar.bz2 |
#2967: Tkinter -> tkinter in test_tcl.
Diffstat (limited to 'Lib')
-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 9a327dc..2593188 100644 --- a/Lib/test/test_tcl.py +++ b/Lib/test/test_tcl.py @@ -3,7 +3,7 @@ import unittest import os from test import support -from Tkinter import Tcl +from tkinter import Tcl from _tkinter import TclError class TclTest(unittest.TestCase): |