diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2010-08-09 22:38:19 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2010-08-09 22:38:19 (GMT) |
commit | 5af4f4b9832411476caf8cf3f571f974056d4f1b (patch) | |
tree | 942e1de0ae5082a3687c1eadc411b12610ff42c4 /Misc | |
parent | 6e451df800af66eefe68ea15938bd65029af06c5 (diff) | |
download | cpython-5af4f4b9832411476caf8cf3f571f974056d4f1b.zip cpython-5af4f4b9832411476caf8cf3f571f974056d4f1b.tar.gz cpython-5af4f4b9832411476caf8cf3f571f974056d4f1b.tar.bz2 |
Issue #3757: thread-local objects now support cyclic garbage collection.
Thread-local objects involved in reference cycles will be deallocated
timely by the cyclic GC, even if the underlying thread is still running.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -67,6 +67,10 @@ Extensions Library ------- +- Issue #3757: thread-local objects now support cyclic garbage collection. + Thread-local objects involved in reference cycles will be deallocated + timely by the cyclic GC, even if the underlying thread is still running. + - Issue #9452: Add read_file, read_string, and read_dict to the configparser API; new source attribute to exceptions. |