diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2011-07-12 19:57:15 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2011-07-12 19:57:15 (GMT) |
commit | 84f1b1718da7fcbb8b8d255c166ef1ec0e03cd21 (patch) | |
tree | 27212e508563c40f28d06eb7938a1e07c6eca063 /Misc/NEWS | |
parent | b3593cada2ee83e1a7a8ee8b0905cbfed8396d3a (diff) | |
download | cpython-84f1b1718da7fcbb8b8d255c166ef1ec0e03cd21.zip cpython-84f1b1718da7fcbb8b8d255c166ef1ec0e03cd21.tar.gz cpython-84f1b1718da7fcbb8b8d255c166ef1ec0e03cd21.tar.bz2 |
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
deallocator calls one of the methods on the type (e.g. when subclassing
IOBase).
Diagnosis and patch by Davide Rizzo.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -10,6 +10,12 @@ What's New in Python 3.2.2? Core and Builtins ----------------- +- 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 + deallocator calls one of the methods on the type (e.g. when subclassing + IOBase). Diagnosis and patch by Davide Rizzo. + - Issue #9611, #9015: FileIO.read() clamps the length to INT_MAX on Windows. - When a generator yields, do not retain the caller's exception state on the |