[pypy-svn] r23319 - pypy/branch/genc-gc-refactoring/test

mwh at codespeak.net mwh at codespeak.net
Tue Feb 14 13:14:40 CET 2006


Author: mwh
Date: Tue Feb 14 13:14:39 2006
New Revision: 23319

Modified:
   pypy/branch/genc-gc-refactoring/test/test_newgc.py
Log:
i just fixed this by changing the gctransformer to run the deallocator graphs
through a very minimal gctransformer.



Modified: pypy/branch/genc-gc-refactoring/test/test_newgc.py
==============================================================================
--- pypy/branch/genc-gc-refactoring/test/test_newgc.py	(original)
+++ pypy/branch/genc-gc-refactoring/test/test_newgc.py	Tue Feb 14 13:14:39 2006
@@ -154,7 +154,7 @@
     assert fn(0) == 1
     assert py.test.raises(TypeError, fn, 1)
 
-def DONTtest_del_raises():
+def test_del_raises():
     class B(object):
         def __del__(self):
             raise TypeError



More information about the Pypy-commit mailing list