diff options
author | Philip Jenvey <pjenvey@underboss.org> | 2009-09-29 04:32:44 (GMT) |
---|---|---|
committer | Philip Jenvey <pjenvey@underboss.org> | 2009-09-29 04:32:44 (GMT) |
commit | dbf3b258e72adcee2c2ef1bbc9ea5ef5ec78a41e (patch) | |
tree | ebd384a9699f08439548e5c96a54a6545184bb0f /Misc | |
parent | b93fff0a57cf9a39c47d29ec8011bd2b14b506ac (diff) | |
download | cpython-dbf3b258e72adcee2c2ef1bbc9ea5ef5ec78a41e.zip cpython-dbf3b258e72adcee2c2ef1bbc9ea5ef5ec78a41e.tar.gz cpython-dbf3b258e72adcee2c2ef1bbc9ea5ef5ec78a41e.tar.bz2 |
#6990: clear threading.local's key only after its thread state is removed:
fixes local subclasses leaving old state around after a ref cycle GC which
could be recycled by new locals
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -12,6 +12,9 @@ What's New in Python 2.7 alpha 1 Core and Builtins ----------------- +- Issue #6990: Fix threading.local subclasses leaving old state around + after a reference cycle GC which could be recycled by new locals. + - Issue #6300: unicode.encode, unicode.decode, str.decode, and str.encode now take keyword arguments. |