[pypy-commit] pypy py3.3: __basic/itemsize__ are impl details

pjenvey noreply at buildbot.pypy.org
Sat Jul 26 21:43:43 CEST 2014


Author: Philip Jenvey <pjenvey at underboss.org>
Branch: py3.3
Changeset: r72542:4f1d9525b86f
Date: 2014-07-26 12:40 -0700
http://bitbucket.org/pypy/pypy/changeset/4f1d9525b86f/

Log:	__basic/itemsize__ are impl details

diff --git a/lib-python/3/test/test_types.py b/lib-python/3/test/test_types.py
--- a/lib-python/3/test/test_types.py
+++ b/lib-python/3/test/test_types.py
@@ -1,6 +1,6 @@
 # Python test set -- part 6, built-in types
 
-from test.support import run_unittest, run_with_locale
+from test.support import run_unittest, run_with_locale, impl_detail
 import collections
 import locale
 import sys
@@ -566,6 +566,7 @@
         for code in 'xXobns':
             self.assertRaises(ValueError, format, 0, ',' + code)
 
+    @impl_detail
     def test_internal_sizes(self):
         self.assertGreater(object.__basicsize__, 0)
         self.assertGreater(tuple.__itemsize__, 0)


More information about the pypy-commit mailing list