mirror of
https://github.com/python/cpython.git
synced 2025-08-30 21:48:47 +00:00
Issue #23629: Fix the default __sizeof__ implementation for variable-sized objects.
This commit is contained in:
commit
63afdaa110
6 changed files with 22 additions and 52 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue