summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2001-01-13 03:45:59 (GMT)
committerTim Peters <tim.peters@gmail.com>2001-01-13 03:45:59 (GMT)
commit73cbc5e6166358ca3b6c0600533af0cd03fdeea6 (patch)
tree5ce20ac6163a57bc9f36440353566d92c644704e
parent9fadfb0d1dbf1b42efbe1374ea55f99b57b76a3f (diff)
downloadcpython-73cbc5e6166358ca3b6c0600533af0cd03fdeea6.zip
cpython-73cbc5e6166358ca3b6c0600533af0cd03fdeea6.tar.gz
cpython-73cbc5e6166358ca3b6c0600533af0cd03fdeea6.tar.bz2
Fix stupidity.
-rw-r--r--Lib/test/test_threadedtempfile.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_threadedtempfile.py b/Lib/test/test_threadedtempfile.py
index a5ee12f..5b06c18 100644
--- a/Lib/test/test_threadedtempfile.py
+++ b/Lib/test/test_threadedtempfile.py
@@ -21,7 +21,7 @@ NUM_THREADS = 20 # change w/ -t option
FILES_PER_THREAD = 50 # change w/ -f option
import threading
-from test.test_support import TestFailed
+from test_support import TestFailed
import StringIO
from traceback import print_exc