From: Serhiy Storchaka Date: Tue, 8 Mar 2016 09:04:22 +0000 (+0200) Subject: Issue #26486: Removed pickle test that doesn't work in 2.7 on 64-bit platform. X-Git-Tag: v2.7.12rc1~191 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2d80fb39054a8bfcc5a00c9ddd5315a06757acde;p=thirdparty%2FPython%2Fcpython.git Issue #26486: Removed pickle test that doesn't work in 2.7 on 64-bit platform. --- diff --git a/Lib/test/pickletester.py b/Lib/test/pickletester.py index a672580ab9d3..855a9c42e19b 100644 --- a/Lib/test/pickletester.py +++ b/Lib/test/pickletester.py @@ -1500,17 +1500,6 @@ class AbstractPickleTests(unittest.TestCase): self.assertEqual(len(loaded), len(data)) self.assertEqual(loaded, data) - def test_int_pickling_efficiency(self): - # Test compacity of int representation (see issue #12744) - for proto in protocols: - pickles = [self.dumps(2**n, proto) for n in xrange(0, 71, 5)] - sizes = list(map(len, pickles)) - # the size function is monotonic - self.assertEqual(sorted(sizes), sizes) - if proto >= 2: - for p in pickles: - self.assertFalse(opcode_in_pickle(pickle.LONG, p)) - def _check_pickling_with_opcode(self, obj, opcode, proto): pickled = self.dumps(obj, proto) self.assertTrue(opcode_in_pickle(opcode, pickled))