Author: Amaury Forgeot d'Arc <[email protected]>
Branch: py3k
Changeset: r58340:7ad662acdaac
Date: 2012-10-21 09:41 +0200
http://bitbucket.org/pypy/pypy/changeset/7ad662acdaac/

Log:    Fix two CPython specific tests

diff --git a/lib-python/3.2/test/test_weakref.py 
b/lib-python/3.2/test/test_weakref.py
--- a/lib-python/3.2/test/test_weakref.py
+++ b/lib-python/3.2/test/test_weakref.py
@@ -640,9 +640,11 @@
         gc.collect()
         self.assertEqual(alist, [])
 
+    @support.impl_detail(pypy=False)
     def test_gc_during_ref_creation(self):
         self.check_gc_during_creation(weakref.ref)
 
+    @support.impl_detail(pypy=False)
     def test_gc_during_proxy_creation(self):
         self.check_gc_during_creation(weakref.proxy)
 
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to