diff options
author | Benjamin Peterson <benjamin@python.org> | 2011-01-12 15:42:34 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2011-01-12 15:42:34 (GMT) |
commit | de368717dad90577e4f491d3f4187742a7d00515 (patch) | |
tree | 4edbbd20931fba6e432f183c3d8ee4a5d69472c1 /Misc/NEWS | |
parent | 6e1d0a829ddd4db0b099878f820d36f5e32a0f03 (diff) | |
download | cpython-de368717dad90577e4f491d3f4187742a7d00515.zip cpython-de368717dad90577e4f491d3f4187742a7d00515.tar.gz cpython-de368717dad90577e4f491d3f4187742a7d00515.tar.bz2 |
Merged revisions 87952-87954 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r87952 | benjamin.peterson | 2011-01-12 09:24:27 -0600 (Wed, 12 Jan 2011) | 1 line
move this test to test_descr; it's not abc specific
........
r87953 | benjamin.peterson | 2011-01-12 09:25:02 -0600 (Wed, 12 Jan 2011) | 1 line
oops, wrong class
........
r87954 | benjamin.peterson | 2011-01-12 09:34:01 -0600 (Wed, 12 Jan 2011) | 1 line
don't segfault on deleting __abstractmethods__ #10892
........
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -10,6 +10,9 @@ What's New in Python 3.1.4? 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. |