diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2015-12-19 18:05:25 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2015-12-19 18:05:25 (GMT) |
commit | 5c4064e8bd199d70eefd7ec24766957c22f1b8e8 (patch) | |
tree | a38d9933d5ee0d72fbebba31f046686e678a2c3c /Modules/arraymodule.c | |
parent | efd7b34d7c4e401bbecb343da7c9506137a3b2fe (diff) | |
download | cpython-5c4064e8bd199d70eefd7ec24766957c22f1b8e8.zip cpython-5c4064e8bd199d70eefd7ec24766957c22f1b8e8.tar.gz cpython-5c4064e8bd199d70eefd7ec24766957c22f1b8e8.tar.bz2 |
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.
Diffstat (limited to 'Modules/arraymodule.c')
-rw-r--r-- | Modules/arraymodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/arraymodule.c b/Modules/arraymodule.c index a3ccf93..6af75a4 100644 --- a/Modules/arraymodule.c +++ b/Modules/arraymodule.c @@ -1743,7 +1743,7 @@ array_array___sizeof___impl(arrayobject *self) /*[clinic end generated code: output=d8e1c61ebbe3eaed input=805586565bf2b3c6]*/ { Py_ssize_t res; - res = sizeof(arrayobject) + self->allocated * self->ob_descr->itemsize; + res = _PyObject_SIZE(Py_TYPE(self)) + self->allocated * self->ob_descr->itemsize; return PyLong_FromSsize_t(res); } |