summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_sys.py
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2015-03-10 21:35:24 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2015-03-10 21:35:24 (GMT)
commit63afdaa1105de24e87658e82de314a37d341f02b (patch)
treef9795c023e2737feb82f974f351beff0b665d87d /Lib/test/test_sys.py
parent12541dc22ef3bbc2469b910eeb8daa4cd5675873 (diff)
parenta654510150cb738b61033c32e30bd4be9f0ed6ed (diff)
downloadcpython-63afdaa1105de24e87658e82de314a37d341f02b.zip
cpython-63afdaa1105de24e87658e82de314a37d341f02b.tar.gz
cpython-63afdaa1105de24e87658e82de314a37d341f02b.tar.bz2
Issue #23629: Fix the default __sizeof__ implementation for variable-sized objects.
Diffstat (limited to 'Lib/test/test_sys.py')
-rw-r--r--Lib/test/test_sys.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/Lib/test/test_sys.py b/Lib/test/test_sys.py
index ed6b47d..dc241a6 100644
--- a/Lib/test/test_sys.py
+++ b/Lib/test/test_sys.py
@@ -846,6 +846,9 @@ class SizeofTest(unittest.TestCase):
check(x, vsize('n2Pi') + x.__alloc__())
# bytearray_iterator
check(iter(bytearray()), size('nP'))
+ # bytes
+ check(b'', vsize('n') + 1)
+ check(b'x' * 10, vsize('n') + 11)
# cell
def get_cell():
x = 42
@@ -965,8 +968,6 @@ class SizeofTest(unittest.TestCase):
check(int(PyLong_BASE), vsize('') + 2*self.longdigit)
check(int(PyLong_BASE**2-1), vsize('') + 2*self.longdigit)
check(int(PyLong_BASE**2), vsize('') + 3*self.longdigit)
- # memoryview
- check(memoryview(b''), size('Pnin 2P2n2i5P Pn'))
# module
check(unittest, size('PnPPP'))
# None