summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_buffer.py
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2015-03-10 21:32:00 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2015-03-10 21:32:00 (GMT)
commita654510150cb738b61033c32e30bd4be9f0ed6ed (patch)
tree78cc513f9f908489c3345a782e1bbe2090e8209e /Lib/test/test_buffer.py
parentebb8c2d528e07df71c345826fc1290327b1e369e (diff)
downloadcpython-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.py15
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):