summaryrefslogtreecommitdiffstats
path: root/Lib/_threading_local.py
Commit message (Collapse)AuthorAgeFilesLines
* give the threading API PEP 8 namesBenjamin Peterson2008-06-111-4/+4
|
* Finally figured out why this module did its imports at theTim Peters2006-04-181-12/+21
| | | | | | | | 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.
* local.__del__(): This didn't actually do anything, because of tooTim Peters2006-04-171-29/+24
| | | | | | 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.
* Fix some comment typosNeal Norwitz2005-11-251-1/+1
|
* Whitespace normalization, via reindent.py.Tim Peters2004-07-181-3/+3
|
* Typo fixesAndrew M. Kuchling2004-07-151-4/+4
|
* Implemented thread-local data as proposed on python-dev:Jim Fulton2004-07-141-0/+237
http://mail.python.org/pipermail/python-dev/2004-June/045785.html