mirror of
https://github.com/python/cpython.git
synced 2025-08-30 21:48:47 +00:00
Issue #25421: __sizeof__ methods of builtin types now use dynamic basic size.
This allows sys.getsize() to work correctly with their subclasses with __slots__ defined.
This commit is contained in:
commit
a9406e77fa
19 changed files with 54 additions and 22 deletions
|
@ -1476,7 +1476,7 @@ deque_sizeof(dequeobject *deque, void *unused)
|
|||
Py_ssize_t res;
|
||||
Py_ssize_t blocks;
|
||||
|
||||
res = sizeof(dequeobject);
|
||||
res = _PyObject_SIZE(Py_TYPE(deque));
|
||||
blocks = (size_t)(deque->leftindex + Py_SIZE(deque) + BLOCKLEN - 1) / BLOCKLEN;
|
||||
assert(deque->leftindex + Py_SIZE(deque) - 1 ==
|
||||
(blocks - 1) * BLOCKLEN + deque->rightindex);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue