summaryrefslogtreecommitdiffstats
path: root/Modules/mmapmodule.c
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-12-19 18:05:25 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-12-19 18:05:25 (GMT)
commit5c4064e8bd199d70eefd7ec24766957c22f1b8e8 (patch)
treea38d9933d5ee0d72fbebba31f046686e678a2c3c /Modules/mmapmodule.c
parentefd7b34d7c4e401bbecb343da7c9506137a3b2fe (diff)
downloadcpython-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/mmapmodule.c')
-rw-r--r--Modules/mmapmodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/mmapmodule.c b/Modules/mmapmodule.c
index daab52b..bb98a99 100644
--- a/Modules/mmapmodule.c
+++ b/Modules/mmapmodule.c
@@ -719,7 +719,7 @@ mmap__sizeof__method(mmap_object *self, void *unused)
{
Py_ssize_t res;
- res = sizeof(mmap_object);
+ res = _PyObject_SIZE(Py_TYPE(self));
if (self->tagname)
res += strlen(self->tagname) + 1;
return PyLong_FromSsize_t(res);