mirror of
https://github.com/python/cpython.git
synced 2025-08-31 14:07:50 +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:
parent
efd7b34d7c
commit
5c4064e8bd
19 changed files with 54 additions and 22 deletions
|
@ -847,7 +847,7 @@ static Py_ssize_t
|
|||
_elementtree_Element___sizeof___impl(ElementObject *self)
|
||||
/*[clinic end generated code: output=bf73867721008000 input=70f4b323d55a17c1]*/
|
||||
{
|
||||
Py_ssize_t result = sizeof(ElementObject);
|
||||
Py_ssize_t result = _PyObject_SIZE(Py_TYPE(self));
|
||||
if (self->extra) {
|
||||
result += sizeof(ElementObjectExtra);
|
||||
if (self->extra->children != self->extra->_children)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue