summaryrefslogtreecommitdiffstats
path: root/Lib/_threading_local.py
Commit message (Collapse)AuthorAgeFilesLines
* Merge rev 45516 from trunk.Tim Peters2006-04-181-12/+21
| | | | | | | | | 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.
* Merge rev 45498 from trunk.Tim Peters2006-04-171-29/+24
| | | | | | | 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.
* 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