summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-11-25 16:34:19 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-11-25 16:34:19 (GMT)
commit670d78abc5b9a9780677c9f1d51dcd543b15e0f7 (patch)
tree2eb1e4c7490c55058e9c88d803f6d1ebd546c9ab /Misc
parent2cefc1efa2fc74da0ec1b79f75639b76ac8e6dfd (diff)
parentd28bb624d120466ba5ebdf5063286b2f309283ab (diff)
downloadcpython-670d78abc5b9a9780677c9f1d51dcd543b15e0f7.zip
cpython-670d78abc5b9a9780677c9f1d51dcd543b15e0f7.tar.gz
cpython-670d78abc5b9a9780677c9f1d51dcd543b15e0f7.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 ba4b54c..5821a86 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ Release date: XXXX-XX-XX
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.