Author: Manuel Jacob
Branch: py3k
Changeset: r61360:2aa29a87191b
Date: 2013-02-16 17:25 +0100
http://bitbucket.org/pypy/pypy/changeset/2aa29a87191b/
Log: Skip these checks (ported from 2.7's test_functools).
diff --git a/lib-python/3.2/test/test_functools.py
b/lib-python/3.2/test/test_functools.py
--- a/lib-python/3.2/test/test_functools.py
+++ b/lib-python/3.2/test/test_functools.py
@@ -47,6 +47,8 @@
# attributes should not be writable
if not isinstance(self.thetype, type):
return
+ if not test_support.check_impl_detail():
+ return
self.assertRaises(AttributeError, setattr, p, 'func', map)
self.assertRaises(AttributeError, setattr, p, 'args', (1, 2))
self.assertRaises(AttributeError, setattr, p, 'keywords', dict(a=1,
b=2))
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit