[pypy-commit] pypy py3k: skip this for now as it's also a problem on CPython, albeit not as easy to

pjenvey noreply at buildbot.pypy.org
Tue May 6 02:16:14 CEST 2014


Author: Philip Jenvey <pjenvey at underboss.org>
Branch: py3k
Changeset: r71292:0177e2f21337
Date: 2014-05-05 17:15 -0700
http://bitbucket.org/pypy/pypy/changeset/0177e2f21337/

Log:	skip this for now as it's also a problem on CPython, albeit not as
	easy to reproduce on there

diff --git a/lib-python/3/test/test_weakref.py b/lib-python/3/test/test_weakref.py
--- a/lib-python/3/test/test_weakref.py
+++ b/lib-python/3/test/test_weakref.py
@@ -1174,7 +1174,9 @@
                 yield Object(v), v
             finally:
                 it = None           # should commit all removals
-        self.check_weak_destroy_and_mutate_while_iterating(dict, testcontext)
+        if not support.check_impl_detail(pypy=True):
+            # XXX: http://bugs.python.org/issue21173
+            self.check_weak_destroy_and_mutate_while_iterating(dict, testcontext)
 
     def test_weak_values_destroy_while_iterating(self):
         # Issue #7105: iterators shouldn't crash when a key is implicitly removed


More information about the pypy-commit mailing list