summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorTim Peters <tim@python.org>2014-05-08 22:42:19 (GMT)
committerTim Peters <tim@python.org>2014-05-08 22:42:19 (GMT)
commit5fbc7b12f776109678dc34fdb49b420750a3e5ff (patch)
treebfd1be75cbf62cc59f5b65e13cfc5239b1b1d220 /Misc
parentc644e7c39f7adf0ed783e128b0278665133bf523 (diff)
downloadcpython-5fbc7b12f776109678dc34fdb49b420750a3e5ff.zip
cpython-5fbc7b12f776109678dc34fdb49b420750a3e5ff.tar.gz
cpython-5fbc7b12f776109678dc34fdb49b420750a3e5ff.tar.bz2
Issue #21435: Segfault in gc with cyclic trash
Changed the iteration logic in finalize_garbage() to tolerate objects vanishing from the list as a side effect of executing a finalizer.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS7
1 files changed, 7 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 29634fc..d0d9012 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -7,6 +7,13 @@ What's New in Python 3.4.1?
Release date: TBA
+Core and Builtins
+-----------------
+
+- Issue #21435: In rare cases, when running finalizers on objects in cyclic
+ trash a bad pointer dereference could occur due to a subtle flaw in
+ internal iteration logic.
+
Library
-------