commit | 7224350656f976ea34045c4e5bb9a2d2184d450c | [log] [tgz] |
---|---|---|
author | Georg Brandl <georg@python.org> | Sat Feb 06 23:02:29 2010 +0000 |
committer | Georg Brandl <georg@python.org> | Sat Feb 06 23:02:29 2010 +0000 |
tree | f85a90ff67b5e6440cf4c67a76e32b969f57154a | |
parent | 84fedf7f061797b1fc95b778e517e6dc86e36db2 [diff] [blame] |
Add a missing import.
diff --git a/Lib/test/test_dl.py b/Lib/test/test_dl.py index a3f04ea..6069a77 100755 --- a/Lib/test/test_dl.py +++ b/Lib/test/test_dl.py
@@ -2,6 +2,7 @@ """Test dlmodule.c Roger E. Masse revised strategy by Barry Warsaw """ +import unittest from test.test_support import verbose, import_module dl = import_module('dl', deprecated=True)