diff options
author | Benjamin Peterson <benjamin@python.org> | 2011-07-15 19:09:26 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2011-07-15 19:09:26 (GMT) |
commit | 5afa03a72ee6d27e742dc0ebc06a0630e1b37fe9 (patch) | |
tree | 681215dcb1cb49babcf4677d582591bb37b22c7c /Misc | |
parent | 1f0ccfa853dcc68d3c2d5b92d22fa0c8e1321b63 (diff) | |
download | cpython-5afa03a72ee6d27e742dc0ebc06a0630e1b37fe9.zip cpython-5afa03a72ee6d27e742dc0ebc06a0630e1b37fe9.tar.gz cpython-5afa03a72ee6d27e742dc0ebc06a0630e1b37fe9.tar.bz2 |
catch nasty exception classes with __new__ that doesn't return a exception (closes #11627)
Patch from Andreas Stührk.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -10,6 +10,9 @@ What's New in Python 3.2.2? Core and Builtins ----------------- +- Issue #11627: Fix segfault when __new__ on a exception returns a non-exception + class. + - Issue #12149: Update the method cache after a type's dictionnary gets cleared by the garbage collector. This fixes a segfault when an instance and its type get caught in a reference cycle, and the instance's |