diff options
author | Benjamin Peterson <benjamin@python.org> | 2011-01-12 15:34:01 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2011-01-12 15:34:01 (GMT) |
commit | 477ba919c158ba6e7a4b85d15f2e2b8820272cd9 (patch) | |
tree | 9134a7531c5ef7fddc917adb8a15d21ced72a586 /Misc | |
parent | 5e8dada4918e9baa023b9262127d60a6f9067818 (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |