diff options
| author | Georg Brandl <georg@python.org> | 2010-02-06 23:02:29 (GMT) |
|---|---|---|
| committer | Georg Brandl <georg@python.org> | 2010-02-06 23:02:29 (GMT) |
| commit | 7224350656f976ea34045c4e5bb9a2d2184d450c (patch) | |
| tree | f85a90ff67b5e6440cf4c67a76e32b969f57154a | |
| parent | 84fedf7f061797b1fc95b778e517e6dc86e36db2 (diff) | |
| download | cpython-7224350656f976ea34045c4e5bb9a2d2184d450c.zip cpython-7224350656f976ea34045c4e5bb9a2d2184d450c.tar.gz cpython-7224350656f976ea34045c4e5bb9a2d2184d450c.tar.bz2 | |
Add a missing import.
| -rwxr-xr-x | Lib/test/test_dl.py | 1 |
1 files changed, 1 insertions, 0 deletions
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) |
