test_module_with_large_stack():  This failed on Windows, for the wrong
reason <wink>:  can't unlink an open file on Windows.
diff --git a/Lib/test/test_import.py b/Lib/test/test_import.py
index 1246822..9342812 100644
--- a/Lib/test/test_import.py
+++ b/Lib/test/test_import.py
@@ -91,6 +91,7 @@
     # compile & remove .py file, we only need .pyc
     f = open(filename, 'r')
     py_compile.compile(filename)
+    f.close()
     os.unlink(filename)
 
     # need to be able to load from current dir
@@ -104,4 +105,3 @@
     os.unlink(module + '.pyc')
 
 test_module_with_large_stack('longlist')
-