diff options
author | Jesus Cea <jcea@jcea.es> | 2012-07-23 16:16:18 (GMT) |
---|---|---|
committer | Jesus Cea <jcea@jcea.es> | 2012-07-23 16:16:18 (GMT) |
commit | 653e4b30e3739ba4a6127e6d5c1144bc0a7892c9 (patch) | |
tree | 699e6c243b85eba58e44d7fed7a6aba241b2c63f | |
parent | 9f65899d193b3056a79f2a7ea8dc32820d1127cf (diff) | |
parent | 189fdf187b70053d57198c595e5b49ae93c98992 (diff) | |
download | cpython-653e4b30e3739ba4a6127e6d5c1144bc0a7892c9.zip cpython-653e4b30e3739ba4a6127e6d5c1144bc0a7892c9.tar.gz cpython-653e4b30e3739ba4a6127e6d5c1144bc0a7892c9.tar.bz2 |
MERGE: Better test for Issue #15402: Add a __sizeof__ method to struct.Struct
-rw-r--r-- | Doc/ACKS.txt | 1 | ||||
-rw-r--r-- | Lib/test/test_struct.py | 8 |
2 files changed, 5 insertions, 4 deletions
diff --git a/Doc/ACKS.txt b/Doc/ACKS.txt index 5636e05..d59fa48 100644 --- a/Doc/ACKS.txt +++ b/Doc/ACKS.txt @@ -205,6 +205,7 @@ docs@python.org), and we'll be glad to correct the problem. * Anthony Starks * Greg Stein * Peter Stoehr + * Serhiy Storchaka * Mark Summerfield * Reuben Sumner * Kalle Svensson diff --git a/Lib/test/test_struct.py b/Lib/test/test_struct.py index f70435b..53c0875 100644 --- a/Lib/test/test_struct.py +++ b/Lib/test/test_struct.py @@ -575,12 +575,12 @@ class StructTest(unittest.TestCase): def test_sizeof(self): self.assertGreater(sys.getsizeof(struct.Struct('BHILfdspP')), sys.getsizeof(struct.Struct('B'))) - self.assertGreaterEqual(sys.getsizeof(struct.Struct('123B')), + self.assertGreater(sys.getsizeof(struct.Struct('123B')), sys.getsizeof(struct.Struct('B'))) - self.assertGreaterEqual(sys.getsizeof(struct.Struct('B' * 123)), + self.assertGreater(sys.getsizeof(struct.Struct('B' * 1234)), + sys.getsizeof(struct.Struct('123B'))) + self.assertGreater(sys.getsizeof(struct.Struct('1234B')), sys.getsizeof(struct.Struct('123B'))) - self.assertGreaterEqual(sys.getsizeof(struct.Struct('123xB')), - sys.getsizeof(struct.Struct('B'))) def test_main(): run_unittest(StructTest) |