Author: Philip Jenvey <[email protected]>
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
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to