summaryrefslogtreecommitdiffstats
path: root/Lib/test/lock_tests.py
Commit message (Collapse)AuthorAgeFilesLines
* Issue #7282: Fix a memory leak when an RLock was used in a thread otherAntoine Pitrou2009-11-091-0/+13
| | | | | than those started through `threading.Thread` (for example, using `thread.start_new_thread()`.
* Issue #7270: Add some dedicated unit tests for multi-thread synchronizationAntoine Pitrou2009-11-061-0/+533
primitives such as Lock, RLock, Condition, Event and Semaphore.