History log of /external/python/cpython2/Lib/_threading_local.py
Revision Date Author Comments (<<< Hide modified files) (Show modified files >>>)
a408350a08d4aadaec7573648ab91651c32a90df 28-Aug-2010 Antoine Pitrou <solipsis@pitrou.net> Merged revisions 84344 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
r84344 | antoine.pitrou | 2010-08-28 20:17:03 +0200 (sam., 28 août 2010) | 4 lines

Issue #1868: Eliminate subtle timing issues in thread-local objects by
getting rid of the cached copy of thread-local attribute dictionary.
........
/external/python/cpython2/Lib/_threading_local.py
1ce6136018b6e1447368e1cc9ec3b70b0dd8729d 22-Feb-2010 Jack Diederich <jackdied@gmail.com> fixes issue #1522237, bad init check in _threading_local
/external/python/cpython2/Lib/_threading_local.py
99c160b559dc6c510e2e9f713191c3c80e26c6f2 05-Nov-2009 Antoine Pitrou <solipsis@pitrou.net> Issue #7264: Fix a possible deadlock when deallocating thread-local objects
which are part of a reference cycle.
/external/python/cpython2/Lib/_threading_local.py
0fbcf6945584b1b2a7564680de50c062fc4dce1c 11-Jun-2008 Benjamin Peterson <benjamin@python.org> give the threading API PEP 8 names
/external/python/cpython2/Lib/_threading_local.py
e247e898464f421a8b9d41ef74aaaf6137876ebb 18-Apr-2006 Tim Peters <tim.peters@gmail.com> Finally figured out why this module did its imports at the
bottom of the file. Restored that, and added a comment
explaining why this is necessary. Hint: on my box, and
yours, it's not :-(

Also added an __all__ list.
/external/python/cpython2/Lib/_threading_local.py
c7605f21ae5c5b9e695c8a2346bc21357a84c6b3 17-Apr-2006 Tim Peters <tim.peters@gmail.com> local.__del__(): This didn't actually do anything, because of too
much convolution <0.5 wink>. Simplified to the point that it works,
and test_threading_local no longer reports leaks under -R. Thanks
to Thomas Wouters for initial analysis.
/external/python/cpython2/Lib/_threading_local.py
7025ce6fb06c273d929bd3cd26435b9140ead969 25-Nov-2005 Neal Norwitz <nnorwitz@gmail.com> Fix some comment typos
/external/python/cpython2/Lib/_threading_local.py
182b5aca27d376b08a2904bed42b751496f932f3 18-Jul-2004 Tim Peters <tim.peters@gmail.com> Whitespace normalization, via reindent.py.
/external/python/cpython2/Lib/_threading_local.py
3fc2fde7ffc7f94438a212592879e57520f01247 15-Jul-2004 Andrew M. Kuchling <amk@amk.ca> Typo fixes
/external/python/cpython2/Lib/_threading_local.py
d15dc06df062fdf0fe8badec2982c6c5e0e28eb0 14-Jul-2004 Jim Fulton <jim@zope.com> Implemented thread-local data as proposed on python-dev:

http://mail.python.org/pipermail/python-dev/2004-June/045785.html
/external/python/cpython2/Lib/_threading_local.py