Author: Amaury Forgeot d'Arc <[email protected]>
Branch: 
Changeset: r46576:250cc08d2fc8
Date: 2011-08-18 00:02 +0200
http://bitbucket.org/pypy/pypy/changeset/250cc08d2fc8/

Log:    win32 fix: call gc.collect() after each bz2 test

diff --git a/lib-python/modified-2.7/test/test_bz2.py 
b/lib-python/modified-2.7/test/test_bz2.py
--- a/lib-python/modified-2.7/test/test_bz2.py
+++ b/lib-python/modified-2.7/test/test_bz2.py
@@ -50,6 +50,7 @@
         self.filename = TESTFN
 
     def tearDown(self):
+        test_support.gc_collect()
         if os.path.isfile(self.filename):
             os.unlink(self.filename)
 
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to