diff options
author | Benjamin Peterson <benjamin@python.org> | 2009-03-29 22:27:26 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2009-03-29 22:27:26 (GMT) |
commit | 8e1a3381293466a6d9a3873b46194a4ed9277619 (patch) | |
tree | f2bf2f872ffa195012934827b1a99e319231e30d | |
parent | c5206b38934d8844a261957149fc15b94efe6454 (diff) | |
download | cpython-8e1a3381293466a6d9a3873b46194a4ed9277619.zip cpython-8e1a3381293466a6d9a3873b46194a4ed9277619.tar.gz cpython-8e1a3381293466a6d9a3873b46194a4ed9277619.tar.bz2 |
add missing import
-rw-r--r-- | Lib/test/test_tk.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_tk.py b/Lib/test/test_tk.py index dedda0d..3ece3d9 100644 --- a/Lib/test/test_tk.py +++ b/Lib/test/test_tk.py @@ -1,5 +1,6 @@ import os import sys +import unittest import Tkinter from test import test_support |