diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2015-03-10 21:32:00 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2015-03-10 21:32:00 (GMT) |
commit | a654510150cb738b61033c32e30bd4be9f0ed6ed (patch) | |
tree | 78cc513f9f908489c3345a782e1bbe2090e8209e /Lib/test/test_buffer.py | |
parent | ebb8c2d528e07df71c345826fc1290327b1e369e (diff) | |
download | cpython-a654510150cb738b61033c32e30bd4be9f0ed6ed.zip cpython-a654510150cb738b61033c32e30bd4be9f0ed6ed.tar.gz cpython-a654510150cb738b61033c32e30bd4be9f0ed6ed.tar.bz2 |
Issue #23629: Fix the default __sizeof__ implementation for variable-sized objects.
Diffstat (limited to 'Lib/test/test_buffer.py')
-rw-r--r-- | Lib/test/test_buffer.py | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Lib/test/test_buffer.py b/Lib/test/test_buffer.py index 1667847..e84f3e4 100644 --- a/Lib/test/test_buffer.py +++ b/Lib/test/test_buffer.py @@ -2449,6 +2449,21 @@ class TestBufferProtocol(unittest.TestCase): self.assertEqual(m.tobytes(), b'') self.assertEqual(m.tolist(), []) + check_sizeof = support.check_sizeof + + def test_memoryview_sizeof(self): + check = self.check_sizeof + vsize = support.calcvobjsize + base_struct = 'Pnin 2P2n2i5P 3cP' + per_dim = '3n' + + items = list(range(8)) + check(memoryview(b''), vsize(base_struct + 1 * per_dim)) + a = ndarray(items, shape=[2, 4], format="b") + check(memoryview(a), vsize(base_struct + 2 * per_dim)) + a = ndarray(items, shape=[2, 2, 2], format="b") + check(memoryview(a), vsize(base_struct + 3 * per_dim)) + def test_memoryview_struct_module(self): class INT(object): |