diff options
| author | Georg Brandl <georg@python.org> | 2010-02-06 23:18:00 (GMT) |
|---|---|---|
| committer | Georg Brandl <georg@python.org> | 2010-02-06 23:18:00 (GMT) |
| commit | d10d8ee2a1f0e4fd01816b5717eb5cc92684fb37 (patch) | |
| tree | ed83b8f0c3b8304b89f5d2c7cc079cf7ada875e2 /Lib/test/test_threaded_import.py | |
| parent | 1a0ffe168af3e3e9ab692435ea1d3362329c5a2b (diff) | |
| download | cpython-d10d8ee2a1f0e4fd01816b5717eb5cc92684fb37.zip cpython-d10d8ee2a1f0e4fd01816b5717eb5cc92684fb37.tar.gz cpython-d10d8ee2a1f0e4fd01816b5717eb5cc92684fb37.tar.bz2 | |
Fix various missing import/unbound name errors.
Diffstat (limited to 'Lib/test/test_threaded_import.py')
| -rw-r--r-- | Lib/test/test_threaded_import.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_threaded_import.py b/Lib/test/test_threaded_import.py index fdbd7b7..4b925c4 100644 --- a/Lib/test/test_threaded_import.py +++ b/Lib/test/test_threaded_import.py @@ -6,6 +6,7 @@ # randrange, and then Python hangs. import thread +import unittest from test.test_support import verbose, TestFailed critical_section = thread.allocate_lock() |
