summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-11-25 16:33:29 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-11-25 16:33:29 (GMT)
commitd28bb624d120466ba5ebdf5063286b2f309283ab (patch)
treefa51e9e30f4f0cc80d72a3f0d9184e42afdbfde9 /Misc
parent33e7ea5ad6a3027ef684ac7941fccf7c97d5cbd6 (diff)
downloadcpython-d28bb624d120466ba5ebdf5063286b2f309283ab.zip
cpython-d28bb624d120466ba5ebdf5063286b2f309283ab.tar.gz
cpython-d28bb624d120466ba5ebdf5063286b2f309283ab.tar.bz2
Issue #24097: Fixed crash in object.__reduce__() if slot name is freed inside
__getattr__. Original patch by Antoine Pitrou.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index fa365cc..9dc0aae 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ Release date: tba
Core and Builtins
-----------------
+- Issue #24097: Fixed crash in object.__reduce__() if slot name is freed inside
+ __getattr__.
+
- Issue #24731: Fixed crash on converting objects with special methods
__bytes__, __trunc__, and __float__ returning instances of subclasses of
bytes, int, and float to subclasses of bytes, int, and float correspondingly.