1. 4b6c417 bpo-29376: Fix assertion error in threading._DummyThread.is_alive() (GH-330) by Xiang Zhang · 8 years ago
  2. cb9ab0f Issue #26941: Fix test_threading that hangs on the Android armv7 qemu emulator. by Xavier de Gaye · 8 years ago
  3. 0a6996d Merge 3.5 (fix raise) by Victor Stinner · 8 years ago
  4. eec9331 Fix SystemError in "raise" statement by Victor Stinner · 8 years ago
  5. bae75cf Issue #19527: Fixed tests with defined COUNT_ALLOCS. by Serhiy Storchaka · 8 years ago
  6. a793037 Issue #19527: Fixed tests with defined COUNT_ALLOCS. by Serhiy Storchaka · 8 years ago
  7. a6f26c1 Remove more unused imports in tests. by Serhiy Storchaka · 8 years ago
  8. e437a10 Issue #23277: Remove unused imports in tests. by Serhiy Storchaka · 8 years ago
  9. b6a9c97 Issue #26778: Fixed "a/an/and" typos in code comment, documentation and error by Serhiy Storchaka · 8 years ago
  10. 6a7b3a7 Issue #26778: Fixed "a/an/and" typos in code comment and documentation. by Serhiy Storchaka · 8 years ago
  11. c877658 Issue #20556: Used specific assert methods in threading tests. by Serhiy Storchaka · 9 years ago
  12. 8c0f0c5 Issue #20556: Used specific assert methods in threading tests. by Serhiy Storchaka · 9 years ago
  13. 19e69c5 Issue #23883: Add missing APIs to __all__; patch by Jacek Kołodziej by Martin Panter · 9 years ago
  14. f488fb4 Issue #19235: Add new RecursionError exception. Patch by Georg Brandl. by Yury Selivanov · 9 years ago
  15. ce64391 Issue #9517: Move script_helper to the support package. by Berker Peksag · 9 years ago
  16. 4882cac Issue #23943: Fix typos. Patch by Piotr Kasprzyk. by Berker Peksag · 9 years ago
  17. 52005c2 Issue #22423: Unhandled exception in thread no longer causes unhandled by Serhiy Storchaka · 10 years ago
  18. 933538e Issue #20526, #19466: Revert changes of issue #19466 which introduces a by Victor Stinner · 11 years ago
  19. f28ba36 Issue #20532: Tests which use _testcapi now are marked as CPython only. by Serhiy Storchaka · 11 years ago
  20. 5cfc79d Issue #20532: Tests which use _testcapi now are marked as CPython only. by Serhiy Storchaka · 11 years ago
  21. 1310510 Issue #14432: Generator now clears the borrowed reference to the thread state by Victor Stinner · 11 years ago
  22. fdeb6ec Issue #14432: Remove the thread state field from the frame structure. Fix a by Victor Stinner · 11 years ago
  23. ed3b0bc Issue #18874: Implement the PEP 454 (tracemalloc) by Victor Stinner · 11 years ago
  24. 45956b9 Close #19466: Clear the frames of daemon threads earlier during the Python by Victor Stinner · 11 years ago
  25. 3d1b7a0 Whitespace normalization. by Tim Peters · 11 years ago
  26. e99bdb9 Issue 19158: a rare race in BoundedSemaphore could allow .release() too often. by Tim Peters · 11 years ago
  27. 7634e1c Issue 19158: a rare race in BoundedSemaphore could allow .release() too often. by Tim Peters · 11 years ago
  28. 77e904e Issue #18948: improve SuppressCoreFiles to include Windows crash popup suppression, and use it in more tests. by Antoine Pitrou · 11 years ago
  29. 72460fa Get "stopped" back into repr(Thread) when appropriate. by Tim Peters · 11 years ago
  30. c363a23 Issue 18984: Remove ._stopped Event from Thread internals. by Tim Peters · 11 years ago
  31. 5da7e79 Issue #18808 again: fix the after-fork logic for not-yet-started or already-stopped threads. by Antoine Pitrou · 11 years ago
  32. 7b47699 Issue #18808: Thread.join() now waits for the underlying thread state to be destroyed before returning. by Antoine Pitrou · 11 years ago
  33. 58b5c5a Issue #18882: Add threading.main_thread() function. by Andrew Svetlov · 11 years ago
  34. 625eed7 test_threading isn't rudimentary anymore by Antoine Pitrou · 11 years ago
  35. 4c8ce84 test_threading isn't rudimentary anymore by Antoine Pitrou · 11 years ago
  36. 79a53ea Issue #18418: After fork(), reinit all threads states, not only active ones. by Charles-François Natali · 11 years ago
  37. 9939cc8 Issue #18418: After fork(), reinit all threads states, not only active ones. by Charles-François Natali · 11 years ago
  38. 7eaf3f7 Issue #18808: Non-daemon threads are now automatically joined when a sub-interpreter is shutdown (it would previously dump a fatal error). by Antoine Pitrou · 11 years ago
  39. 8408cea Issue #17094: Clear stale thread states after fork(). by Antoine Pitrou · 11 years ago
  40. 20ea96f backported rev 79713 from 3.4, test_recursion_limit skipped for -O0 by Łukasz Langa · 11 years ago
  41. 5cbf3a0 Merge #17435: Don't use mutable default values in Timer. by R David Murray · 11 years ago
  42. 19aeb43 Issue #17435: Don't use mutable default values in Timer. by R David Murray · 11 years ago
  43. bfc0245 Merge 3.3. by Stefan Krah · 12 years ago
  44. fc4aa76 Issue #11870: Skip test_3_join_in_forked_from_thread() on HP-UX. by Stefan Krah · 12 years ago
  45. d541d3f When not optimized function stack sizes are much larger and may cause this test to fail. by Benjamin Peterson · 12 years ago
  46. 4791a24 #16135: Removal of OS/2 support (Python code partial cleanup) by Jesus Cea · 12 years ago
  47. a9effcd Better diagnose test failure by Antoine Pitrou · 12 years ago
  48. b8b6a68 Better diagnose test failure by Antoine Pitrou · 12 years ago
  49. dd5aa36 Issue #14308: Fix an exception when a dummy thread is in the threading module's active list after a fork(). by Antoine Pitrou · 12 years ago
  50. 8e6e0fd Issue #14308: Fix an exception when a "dummy" thread is in the threading module's active list after a fork(). by Antoine Pitrou · 12 years ago
  51. 9384c7d Issue #13902: Fix a random test_threading failure on FreeBSD 6 buildbots (due by Charles-François Natali · 13 years ago
  52. 8e6fe64 Issue #13902: Fix a random test_threading failure on FreeBSD 6 buildbots (due by Charles-François Natali · 13 years ago
  53. b2c9e9a Skip test_threading.test_reinit_tls_after_fork() on platforms where fork() by Charles-François Natali · 13 years ago
  54. 6f91ce7 Skip test_threading.test_reinit_tls_after_fork() on platforms where fork() by Charles-François Natali · 13 years ago
  55. 3f32fc8 Merge. by Charles-François Natali · 13 years ago
  56. 6d0d24e Issue #13817: After fork(), reinit the ad-hoc TLS implementation earlier to fix by Charles-François Natali · 13 years ago
  57. 9ab91c6 Issue #13894: Skip test_threading.CRLockTests if _CRLock isn't available. Patch by Charles-François Natali · 13 years ago
  58. 6b671b2 Issue #13894: Skip test_threading.CRLockTests if _CRLock isn't available. Patch by Charles-François Natali · 13 years ago
  59. 2555b0a (merge 3.2) Issue #11870: Skip test_threading.test_2_join_in_forked_process() by Victor Stinner · 13 years ago
  60. 26d3186 Issue #11870: Skip test_threading.test_2_join_in_forked_process() on platforms by Victor Stinner · 13 years ago
  61. 2f655b7 (merge 3.2) Issue #12451: Open files in binary mode in some tests when the text by Victor Stinner · 13 years ago
  62. a6d2c76 Issue #12451: Open files in binary mode in some tests when the text file is not by Victor Stinner · 13 years ago
  63. 2a12974 Close #12028: Make threading._get_ident() public, rename it to by Victor Stinner · 13 years ago
  64. 61be422 Issue #9670: Increase the default stack size for secondary threads on by Ned Deily · 13 years ago
  65. 056f5b9 Issue #9670: Increase the default stack size for secondary threads on by Ned Deily · 13 years ago
  66. 9a7c524 Issue #9670: Increase the default stack size for secondary threads on by Ned Deily · 13 years ago
  67. b596dc7 Merge: Use shared testing facilities in test_threading by Antoine Pitrou · 13 years ago
  68. c4d7864 Use shared testing facilities in test_threading by Antoine Pitrou · 13 years ago
  69. fc20b0c Issue #1856: Avoid crashes and lockups when daemon threads run while the by Antoine Pitrou · 13 years ago
  70. 0d5e52d Issue #1856: Avoid crashes and lockups when daemon threads run while the by Antoine Pitrou · 13 years ago
  71. d5c355c Issue #11223: Replace threading._info() by sys.thread_info by Victor Stinner · 13 years ago
  72. 754851f Issue #11223: Add threading._info() function providing informations about the by Victor Stinner · 13 years ago
  73. 4e6aba6 Issue9670: Merge backout from 3.2. by Ned Deily · 13 years ago
  74. 2604e33 Issue9670: Merge backout to 3.2. by Ned Deily · 13 years ago
  75. 45e47e5 Issue9670: Back out changeset 378b40d71175; test fails on other platforms by Ned Deily · 13 years ago
  76. 6e678b4 Issue #9670: merge with current by Ned Deily · 13 years ago
  77. 15012a6 Issue #9670: merge with 3.2 by Ned Deily · 13 years ago
  78. 517ac72 Issue #9670: Increase the default stack size for secondary threads on by Ned Deily · 13 years ago
  79. 3b3499b #11565: Merge with 3.1. by Ezio Melotti · 14 years ago
  80. 1392500 #11565: Fix several typos. Patch by Piotr Kasprzyk. by Ezio Melotti · 14 years ago
  81. b88ed15 #11565: Merge with 3.2. by Ezio Melotti · 14 years ago
  82. fcf81fd Issue #11140: Lock.release() now raises a RuntimeError when attempting by Antoine Pitrou · 14 years ago
  83. 0bd4deb Issue #6064: Add a `daemon` keyword argument to the threading.Thread by Antoine Pitrou · 14 years ago
  84. 7beae8a Issue 10825: Minor updates to the test suite. by Raymond Hettinger · 14 years ago
  85. c932b65 test_threading: use Popen.communicate() instead of .wait() by Victor Stinner · 14 years ago
  86. 4b129d2 Merged revisions 87710 via svnmerge from by Gregory P. Smith · 14 years ago
  87. 96c886c issue6643 - Two locks held within the threading module on each thread instance by Gregory P. Smith · 14 years ago
  88. 19f2aeb Merged revisions 86596 via svnmerge from by Ezio Melotti · 14 years ago
  89. b3aedd4 #9424: Replace deprecated assert* methods in the Python test suite. by Ezio Melotti · 14 years ago
  90. de11b18 Close subprocess pipes to clean up ResourceWarnings by Brian Curtin · 14 years ago
  91. e509ff4 Merged revisions 86107 via svnmerge from by Brian Curtin · 14 years ago
  92. b68928b Clean up ResourceWarnings. Explictly close stdout from the subprocess. by Brian Curtin · 14 years ago
  93. 3be0003 issue 8777 Add threading.Barrier by Kristján Valur Jónsson · 14 years ago
  94. 397cd8a Merged revisions 85586-85587,85596-85598 via svnmerge from by Gregory P. Smith · 14 years ago
  95. feedda2 Avoid hanging the test on netbsd5. by Gregory P. Smith · 14 years ago
  96. 4a5dd5c Merged revisions 84909-84913 via svnmerge from by Antoine Pitrou · 14 years ago
  97. 7c08744 Make error more explicit in test_finalize_with_trace by Antoine Pitrou · 14 years ago
  98. 62f68ed Factor out stripping of interpreter debug output in test.support.strip_python_stderr() by Antoine Pitrou · 14 years ago
  99. 81a4a6a Tab test_repr_daemon over so it's included in ThreadTests. Noticed by Amaury. by Brian Curtin · 14 years ago
  100. 3f5f226 Add more tests for the threading.Thread.repr. by Brett Cannon · 14 years ago