diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2010-08-09 22:41:38 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2010-08-09 22:41:38 (GMT) |
commit | 87d5260362faf07c5332679aa27e35aef5dd3a34 (patch) | |
tree | 3464d5c0861599c1a7a2b106a062b4bd6eea4358 /Misc | |
parent | 7a956cc74e701f3de1b74f4b2a514975731d23d2 (diff) | |
download | cpython-87d5260362faf07c5332679aa27e35aef5dd3a34.zip cpython-87d5260362faf07c5332679aa27e35aef5dd3a34.tar.gz cpython-87d5260362faf07c5332679aa27e35aef5dd3a34.tar.bz2 |
Merged revisions 83918 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r83918 | antoine.pitrou | 2010-08-10 00:38:19 +0200 (mar., 10 août 2010) | 5 lines
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
@@ -98,6 +98,10 @@ C-API 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. + - Fix Issue8280 - urllib2's Request method will remove fragements in the url. This is how it is supposed to work, wget and curl do the same. Previous behavior was wrong. |