diff options
author | Brett Cannon <bcannon@gmail.com> | 2007-01-23 23:21:22 (GMT) |
---|---|---|
committer | Brett Cannon <bcannon@gmail.com> | 2007-01-23 23:21:22 (GMT) |
commit | f5bee30e30687447d9d532dc298ba0793beb4515 (patch) | |
tree | 429f3a16538dc9c832f2b04f74f9200f95121b23 /Misc | |
parent | 6c5c502b914261ba333e98c4657a8d90cfbbe872 (diff) | |
download | cpython-f5bee30e30687447d9d532dc298ba0793beb4515.zip cpython-f5bee30e30687447d9d532dc298ba0793beb4515.tar.gz cpython-f5bee30e30687447d9d532dc298ba0793beb4515.tar.bz2 |
Fix crasher for when an object's __del__ creates a new weakref to itself.
Patch only fixes new-style classes; classic classes still buggy.
Closes bug #1377858. Already backported.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -12,6 +12,10 @@ What's New in Python 2.6 alpha 1? Core and builtins ----------------- +- Bug #1377858: Fix the segfaulting of the interpreter when an object created + a weakref on itself during a __del__ call for new-style classes (classic + classes still have the bug). + - Bug #1579370: Make PyTraceBack_Here use the current thread, not the frame's thread state. |