[pypy-svn] r58962 - pypy/branch/2.5-merge/lib-python/modified-2.5.2/test

arigo at codespeak.net arigo at codespeak.net
Sat Oct 11 13:11:38 CEST 2008


Author: arigo
Date: Sat Oct 11 13:11:36 2008
New Revision: 58962

Added:
   pypy/branch/2.5-merge/lib-python/modified-2.5.2/test/test_deque.py
      - copied, changed from r58959, pypy/branch/2.5-merge/lib-python/2.5.2/test/test_deque.py
Log:
(antocuni, arigo)
- remove all the test_deque changes, which don't make sense any more
- add a gc_collect()


Copied: pypy/branch/2.5-merge/lib-python/modified-2.5.2/test/test_deque.py (from r58959, pypy/branch/2.5-merge/lib-python/2.5.2/test/test_deque.py)
==============================================================================
--- pypy/branch/2.5-merge/lib-python/2.5.2/test/test_deque.py	(original)
+++ pypy/branch/2.5-merge/lib-python/modified-2.5.2/test/test_deque.py	Sat Oct 11 13:11:36 2008
@@ -475,6 +475,7 @@
         p = proxy(d)
         self.assertEqual(str(p), str(d))
         d = None
+        test_support.gc_collect()
         self.assertRaises(ReferenceError, str, p)
 
     def test_strange_subclass(self):



More information about the Pypy-commit mailing list