summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2004-10-01 02:13:16 (GMT)
committerTim Peters <tim.peters@gmail.com>2004-10-01 02:13:16 (GMT)
commitcf8997f6f8be3d5feae2bd66de12b975d63d9bf5 (patch)
treeb5d2685fe4fcc351064a6e5201dce1c0e0b31edd
parent10c7e86454db59ece9d5ed028dd9d104ac766bdf (diff)
downloadcpython-cf8997f6f8be3d5feae2bd66de12b975d63d9bf5.zip
cpython-cf8997f6f8be3d5feae2bd66de12b975d63d9bf5.tar.gz
cpython-cf8997f6f8be3d5feae2bd66de12b975d63d9bf5.tar.bz2
Noted the fix to deque gc.
-rw-r--r--Misc/NEWS4
1 files changed, 3 insertions, 1 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 39f7d19..448ef29 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -27,7 +27,9 @@ Core and builtins
Extension modules
-----------------
-...
+- ``collections.deque`` objects didn't play quite right with garbage
+ collection, which could lead to a segfault in a release build, or
+ an assert failure in a debug build.
Library
-------