[pypy-commit] pypy py3k: oops

pjenvey pypy.commits at gmail.com
Wed May 4 22:59:41 EDT 2016


Author: Philip Jenvey <pjenvey at underboss.org>
Branch: py3k
Changeset: r84207:aba8656cdef4
Date: 2016-05-04 19:58 -0700
http://bitbucket.org/pypy/pypy/changeset/aba8656cdef4/

Log:	oops

diff --git a/lib-python/3/test/test_descr.py b/lib-python/3/test/test_descr.py
--- a/lib-python/3/test/test_descr.py
+++ b/lib-python/3/test/test_descr.py
@@ -1797,7 +1797,7 @@
             ("__ceil__", math.ceil, zero, set(), {}),
             ("__dir__", dir, empty_seq, set(), {}),
             ]
-        if not hasattr(sys, 'getsizeof') and support.check_impl_detail():
+        if support.check_impl_detail():
             specials.append(("__sizeof__", sys.getsizeof, zero, set(), {}))
 
         class Checker(object):


More information about the pypy-commit mailing list