summaryrefslogtreecommitdiff
path: root/Lib/test/test_threading.py
Commit message (Expand)AuthorAgeFilesLines
* bpo-36402: Fix threading._shutdown() race condition (GH-13948) (GH-14050) (GH...Miss Islington (bot)2019-06-131-3/+76
* bpo-23395: Fix PyErr_SetInterrupt if the SIGINT signal is ignored or not hand...Miss Islington (bot)2019-05-241-0/+35
* bpo-35283: Add pending deprecation warning for Thread.isAlive (GH-11604)Dong-hee Na2019-01-181-1/+2
* bpo-31516: Skip test_main_thread_during_shutdown() with COUNT_ALLOCS builds. ...Miss Islington (bot)2018-10-121-0/+1
* bpo-32593: Drop FreeBSD 9 and older support (#5232)Victor Stinner2018-01-221-2/+1
* Replace KB unit with KiB (#4293)Victor Stinner2017-11-081-4/+4
* Fix miscellaneous typos (#4275)luzpaz2017-11-051-1/+1
* bpo-31516: current_thread() should not return a dummy thread at shutdown (#3673)Antoine Pitrou2017-10-021-0/+29
* bpo-31234: Join timers in test_threading (#3598)Victor Stinner2017-09-151-0/+2
* bpo-31234: Add test.support.wait_threads_exit() (#3578)Victor Stinner2017-09-141-6/+8
* bpo-31234: Join threads in test_threading (#3579)Victor Stinner2017-09-141-0/+4
* bpo-31370: Remove support for threads-less builds (#3385)Antoine Pitrou2017-09-071-2/+2
* bpo-31234: test_threading: fix ref cycle (#3150)Victor Stinner2017-08-191-0/+2
* bpo-30387: Fix warning in test_threading (#1634)Victor Stinner2017-05-171-3/+5
* bpo-6532: Make the thread id an unsigned integer. (#781)Serhiy Storchaka2017-03-231-3/+6
* bpo-29376: Fix assertion error in threading._DummyThread.is_alive() (GH-236)Xiang Zhang2017-02-271-0/+3
* Issue #26941: Fix test_threading that hangs on the Android armv7 qemu emulator.Xavier de Gaye2016-12-081-1/+1
* Merge 3.5 (fix raise)Victor Stinner2016-08-181-0/+18
|\
| * Fix SystemError in "raise" statementVictor Stinner2016-08-181-0/+18
* | Issue #19527: Fixed tests with defined COUNT_ALLOCS.Serhiy Storchaka2016-07-031-1/+3
|\ \ | |/
| * Issue #19527: Fixed tests with defined COUNT_ALLOCS.Serhiy Storchaka2016-07-031-1/+3
* | Remove more unused imports in tests.Serhiy Storchaka2016-04-251-1/+0
* | Issue #23277: Remove unused imports in tests.Serhiy Storchaka2016-04-241-1/+1
* | Issue #26778: Fixed "a/an/and" typos in code comment, documentation and errorSerhiy Storchaka2016-04-171-1/+1
|\ \ | |/
| * Issue #26778: Fixed "a/an/and" typos in code comment and documentation.Serhiy Storchaka2016-04-171-1/+1
* | Issue #20556: Used specific assert methods in threading tests.Serhiy Storchaka2016-03-141-14/+13
|\ \ | |/
| * Issue #20556: Used specific assert methods in threading tests.Serhiy Storchaka2016-03-141-14/+13
* | Issue #23883: Add missing APIs to __all__; patch by Jacek KoƂodziejMartin Panter2015-11-141-0/+8
|/
* Issue #19235: Add new RecursionError exception. Patch by Georg Brandl.Yury Selivanov2015-07-031-1/+1
* Issue #9517: Move script_helper to the support package.Berker Peksag2015-05-061-1/+1
* Issue #23943: Fix typos. Patch by Piotr Kasprzyk.Berker Peksag2015-04-141-1/+1
* Issue #22423: Unhandled exception in thread no longer causes unhandledSerhiy Storchaka2014-09-211-2/+83
* Issue #20526, #19466: Revert changes of issue #19466 which introduces aVictor Stinner2014-02-131-49/+0
* Issue #20532: Tests which use _testcapi now are marked as CPython only.Serhiy Storchaka2014-02-071-2/+4
|\
| * Issue #20532: Tests which use _testcapi now are marked as CPython only.Serhiy Storchaka2014-02-071-1/+2
| * Issue #14432: Generator now clears the borrowed reference to the thread stateVictor Stinner2013-12-131-0/+43
* | Issue #14432: Remove the thread state field from the frame structure. Fix aVictor Stinner2013-12-131-0/+38
* | Issue #18874: Implement the PEP 454 (tracemalloc)Victor Stinner2013-11-231-2/+2
* | Close #19466: Clear the frames of daemon threads earlier during the PythonVictor Stinner2013-11-121-0/+50
* | Whitespace normalization.Tim Peters2013-10-081-16/+16
* | Issue 19158: a rare race in BoundedSemaphore could allow .release() too often.Tim Peters2013-10-081-0/+18
|\ \ | |/
| * Issue 19158: a rare race in BoundedSemaphore could allow .release() too often.Tim Peters2013-10-081-0/+18
* | Issue #18948: improve SuppressCoreFiles to include Windows crash popup suppre...Antoine Pitrou2013-10-081-1/+2
* | Get "stopped" back into repr(Thread) when appropriate.Tim Peters2013-09-091-0/+25
* | Issue 18984: Remove ._stopped Event from Thread internals.Tim Peters2013-09-081-137/+1
* | Issue #18808 again: fix the after-fork logic for not-yet-started or already-s...Antoine Pitrou2013-09-081-1/+1
* | Issue #18808: Thread.join() now waits for the underlying thread state to be d...Antoine Pitrou2013-09-071-2/+68
* | Issue #18882: Add threading.main_thread() function.Andrew Svetlov2013-09-041-7/+71
* | test_threading isn't rudimentary anymoreAntoine Pitrou2013-09-011-1/+3
|\ \ | |/
| * test_threading isn't rudimentary anymoreAntoine Pitrou2013-09-011-1/+3