Blame SOURCES/00134-fix-COUNT_ALLOCS-failure-in-test_sys.patch

ae2451
--- Python-2.7.2/Lib/test/test_sys.py.mark-tests-that-fail-in-rpmbuild	2011-09-08 18:02:31.627362039 -0400
ae2451
+++ Python-2.7.2/Lib/test/test_sys.py	2011-09-08 18:15:29.450308851 -0400
ae2451
@@ -734,6 +734,11 @@ class SizeofTest(unittest.TestCase):
ae2451
         # (PyTypeObject + PyNumberMethods +  PyMappingMethods +
ae2451
         #  PySequenceMethods + PyBufferProcs)
ae2451
         s = vsize('P2P15Pl4PP9PP11PI') + struct.calcsize('41P 10P 3P 6P')
ae2451
+
ae2451
+        # COUNT_ALLOCS adds further fields to the end of a PyTypeObject:
ae2451
+        if hasattr(sys, 'getcounts'):
ae2451
+            s += size('P')
ae2451
+
ae2451
         class newstyleclass(object):
ae2451
             pass
ae2451
         check(newstyleclass, s)