Author: Manuel Jacob
Branch: py3k
Changeset: r61206:ef43e3c73141
Date: 2013-02-13 13:19 +0100
http://bitbucket.org/pypy/pypy/changeset/ef43e3c73141/
Log: Skip this check in the 3.2 test suite, too.
diff --git a/lib-python/3.2/test/test_dict.py b/lib-python/3.2/test/test_dict.py
--- a/lib-python/3.2/test/test_dict.py
+++ b/lib-python/3.2/test/test_dict.py
@@ -319,7 +319,8 @@
self.assertEqual(va, int(ka))
kb, vb = tb = b.popitem()
self.assertEqual(vb, int(kb))
- self.assertFalse(copymode < 0 and ta != tb)
+ if test_support.check_impl_detail():
+ self.assertFalse(copymode < 0 and ta != tb)
self.assertFalse(a)
self.assertFalse(b)
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit