summaryrefslogtreecommitdiffstats
path: root/Misc
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 /Misc
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 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 1f4d55c..299ed3c 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,10 @@ Release date: tba
Core and Builtins
-----------------
+- 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.
+
- Issue #25709: Fixed problem with in-place string concatenation and utf-8 cache.
- Issue #24097: Fixed crash in object.__reduce__() if slot name is freed inside