summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2011-01-12 15:34:01 (GMT)
committerBenjamin Peterson <benjamin@python.org>2011-01-12 15:34:01 (GMT)
commit477ba919c158ba6e7a4b85d15f2e2b8820272cd9 (patch)
tree9134a7531c5ef7fddc917adb8a15d21ced72a586 /Misc
parent5e8dada4918e9baa023b9262127d60a6f9067818 (diff)
downloadcpython-477ba919c158ba6e7a4b85d15f2e2b8820272cd9.zip
cpython-477ba919c158ba6e7a4b85d15f2e2b8820272cd9.tar.gz
cpython-477ba919c158ba6e7a4b85d15f2e2b8820272cd9.tar.bz2
don't segfault on deleting __abstractmethods__ #10892
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 262f982..ee69f50 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -8,6 +8,9 @@ What's New in Python 3.2 Release Candidate 1
Core and Builtins
-----------------
+- Issue #10892: Don't segfault when trying to delete __abstractmethods__ from a
+ class.
+
- Issue #8020: Avoid a crash where the small objects allocator would read
non-Python managed memory while it is being modified by another thread.
Patch by Matt Bandy.