summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_threading.py
Commit message (Expand)AuthorAgeFilesLines
* Issue #7282: Fix a memory leak when an RLock was used in a thread otherAntoine Pitrou2009-11-091-4/+2
* Kill a small potential leak in test_threading.Antoine Pitrou2009-11-081-0/+2
* Issue #7270: Add some dedicated unit tests for multi-thread synchronizationAntoine Pitrou2009-11-061-17/+29
* Suppress transient refleaks in test_threading.Antoine Pitrou2009-10-271-3/+12
* Fix Windows buildbot failureAntoine Pitrou2009-10-231-3/+2
* Test wouldn't work in debug mode.Antoine Pitrou2009-10-201-0/+1
* Issue #1722344: threading._shutdown() is now called in Py_Finalize(), whichAntoine Pitrou2009-10-201-0/+24
* Add a comment about unreachable code, and fix a typoAntoine Pitrou2009-10-181-1/+3
* Add a test for same-thread asynchronous exceptions (see #1779233).Antoine Pitrou2009-10-181-0/+19
* convert usage of fail* to assert*Benjamin Peterson2009-06-301-15/+15
* fix Thread.ident when it is the main thread or a dummy thread #5632Benjamin Peterson2009-03-311-0/+13
* #1674032: return value of flag from Event.wait(). OKed by Guido.Georg Brandl2009-03-311-1/+2
* Works around issue3863: freebsd4/5/6 and os2emx are known to have OS bugs whenGregory P. Smith2008-09-301-0/+6
* backport threading property changesBenjamin Peterson2008-08-181-6/+6
* change threading.getIdent to a propertyBenjamin Peterson2008-08-181-2/+2
* try to fix test_threading on the Windows botBenjamin Peterson2008-07-171-1/+2
* Apply patch for 874900: threading module can deadlock after forkJesse Noller2008-07-161-1/+79
* give the threading API PEP 8 namesBenjamin Peterson2008-06-111-12/+12
* Adds a Thread.getIdent() method to provide the _get_ident() value forGregory P. Smith2008-06-011-0/+5
* #1733757: the interpreter would hang on shutdown, if the function set by sys....Amaury Forgeot d'Arc2008-04-031-0/+29
* Kill a race in test_threading in which the exception info in a thread finishingJeffrey Yasskin2008-03-281-2/+6
* Speed test_threading up from 14s to .5s, and avoid a deadlock on certainJeffrey Yasskin2008-03-211-25/+28
* Followup to r61011: Also avoid the reference cycle when the Thread's targetJeffrey Yasskin2008-02-231-3/+11
* Prevent classes like:Jeffrey Yasskin2008-02-231-0/+20
* - Fix Issue #1703448: A joined thread could show up in theGregory P. Smith2008-01-221-0/+18
* Issue #1402: PyInterpreterState_Clear() may still invoke user codeAmaury Forgeot d'Arc2007-11-291-0/+34
* Patch #1731049: make threading.py use a proper "raise" when checking internal...Collin Winter2007-06-061-1/+41
* test_PyThreadState_SetAsyncExc(): This is failing on someTim Peters2006-08-111-3/+4
* Followup to bug #1069160.Tim Peters2006-08-101-0/+69
* test_threading now skips testing alternate thread stack sizes onAndrew MacIntyre2006-08-061-2/+12
* Increase the small thread stack size to get the testAndrew MacIntyre2006-06-131-3/+3
* Patch #1454481: Make thread stack size runtime tunable.Andrew MacIntyre2006-06-131-0/+16
* Revert revisions:Tim Peters2006-06-041-16/+0
* Patch #1454481: Make thread stack size runtime tunable.Andrew MacIntyre2006-06-041-0/+16
* threading._DummyThread.__init__(): document obscure new code.Tim Peters2005-01-081-1/+22
* Converted to a unittest. Added checks that the bounded semaphore actuallyTim Peters2005-01-081-37/+73
* Get rid of relative imports in all unittests. Now anything thatBarry Warsaw2002-07-231-1/+1
* Test failed because these was no expected-output file, but always printedTim Peters2001-08-201-5/+8
* add a few test cases for threading module.Skip Montanaro2001-08-201-0/+52