]> granicus.if.org Git - python/commitdiff
Hack to avoid test_tempfile failures when run after test_threaded_import
authorAntoine Pitrou <solipsis@pitrou.net>
Mon, 15 Nov 2010 18:25:24 +0000 (18:25 +0000)
committerAntoine Pitrou <solipsis@pitrou.net>
Mon, 15 Nov 2010 18:25:24 +0000 (18:25 +0000)
(only needed on 3.1)

Lib/test/test_threaded_import.py

index 7791935fdf170d2d0963bc87dc2f64b391eae3b9..e4d1882eae50857dca2080ecd42504c6be9b55bd 100644 (file)
@@ -10,6 +10,10 @@ import imp
 import sys
 import time
 import shutil
+# HACK: preloading tempfile is necessary to avoid failures when test_tempfile
+# is run after test_threaded_import.  This has to do with dark secrets of
+# the import machinery and phantom copies of the random module.
+import tempfile
 import unittest
 from test.support import verbose, import_module, run_unittest, TESTFN
 thread = import_module('_thread')