diff options
author | Benjamin Peterson <benjamin@python.org> | 2009-03-26 21:30:10 +0000 |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2009-03-26 21:30:10 +0000 |
commit | bf4464a38ffd672a4b39322058aa2eda41f26a60 (patch) | |
tree | 889f64f816ae1cd2beec3cdabb6df02ca2bf53a9 | |
parent | a9b5be0c05b8d9750e371f334e730b2cbef6cb01 (diff) | |
download | cpython-git-bf4464a38ffd672a4b39322058aa2eda41f26a60.tar.gz |
add missing import
-rw-r--r-- | Lib/test/test_ttk_guionly.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_ttk_guionly.py b/Lib/test/test_ttk_guionly.py index a800d62eda..831a22221a 100644 --- a/Lib/test/test_ttk_guionly.py +++ b/Lib/test/test_ttk_guionly.py @@ -1,6 +1,7 @@ import os import sys import ttk +import unittest from _tkinter import TclError from test import test_support |