1. 5909a49 bpo-42350: Fix Thread._reset_internal_locks() (GH-23268) by Victor Stinner · 3 years, 9 months ago
  2. 750c5ab bpo-42308: Add threading.__excepthook__ (GH-23218) by Mario Corchero · 3 years, 9 months ago
  3. 0001a1b bpo-42251: Add gettrace and getprofile to threading (GH-23125) by Mario Corchero · 3 years, 9 months ago
  4. 98c16c9 bpo-41833: threading.Thread now uses the target name (GH-22357) by Victor Stinner · 3 years, 11 months ago
  5. 14d5331 bpo-40234: Revert "bpo-37266: Daemon threads are now denied in subinterpreters (GH-14049)" (GH-19456) by Victor Stinner · 4 years, 4 months ago
  6. 87255be bpo-40089: Add _at_fork_reinit() method to locks (GH-19195) by Victor Stinner · 4 years, 4 months ago
  7. b61b818 bpo-39812: Remove daemon threads in concurrent.futures (GH-19149) by Kyle Stanley · 4 years, 5 months ago
  8. d8ff44c bpo-40089: Fix threading._after_fork() (GH-19191) by Victor Stinner · 4 years, 5 months ago
  9. 1f21eaa bpo-15999: Clean up of handling boolean arguments. (GH-15610) by Serhiy Storchaka · 5 years ago
  10. 35f6301 bpo-10978: Semaphores can release multiple threads at a time (GH-15588) by Raymond Hettinger · 5 years ago
  11. d11c2c6 Revert "bpo-37788: Fix a reference leak if a thread is not joined (GH-15228)" (GH-15338) by Victor Stinner · 5 years ago
  12. d3dcc92 bpo-37788: Fix a reference leak if a thread is not joined (GH-15228) by Victor Stinner · 5 years ago
  13. 44046fe bpo-37804: Remove the deprecated method threading.Thread.isAlive() (GH-15225) by Dong-hee Na · 5 years ago
  14. bb110cc Improve threading.daemon docstring (GH-14278) by mbarkhau · 5 years ago
  15. 066e5b1 bpo-37266: Daemon threads are now denied in subinterpreters (GH-14049) by Victor Stinner · 5 years ago
  16. 6f75c87 tbpo-36402: Fix threading.Thread._stop() (GH-14047) by Victor Stinner · 5 years ago
  17. 468e5fe bpo-36402: Fix threading._shutdown() race condition (GH-13948) by Victor Stinner · 5 years ago
  18. cd590a7 bpo-1230540: Add threading.excepthook() (GH-13515) by Victor Stinner · 5 years ago
  19. b121f63 bpo-36084: Add native thread ID (TID) to threading.Thread (GH-13463) by Jake Tesler · 5 years ago
  20. d12e757 Revert "bpo-36084: Add native thread ID to threading.Thread objects (GH-11993)" (GH-13458) by Victor Stinner · 5 years ago
  21. 4959c33 bpo-36084: Add native thread ID to threading.Thread objects (GH-11993) by Jake Tesler · 5 years ago
  22. 62fa51f Fix typos and improve grammar in threading.Barrier docstrings (GH-12210) by Carl Bordum Hansen · 5 years ago
  23. 36d9e9a bpo-35283: Update the docstring of threading.Thread.join method (GH-11596) by Dong-hee Na · 6 years ago
  24. 89669ff bpo-35283: Add deprecation warning for Thread.isAlive (GH-11454) by Dong-hee Na · 6 years ago
  25. 5634331 bpo-33556: Remove reference to thread module from docstring (GH-6963) by Skip Montanaro · 6 years ago
  26. 1023dbb bpo-31516: current_thread() should not return a dummy thread at shutdown (#3673) by Antoine Pitrou · 7 years ago
  27. a6a4dc8 bpo-31370: Remove support for threads-less builds (#3385) by Antoine Pitrou · 7 years ago
  28. ee84a60 bpo-18966: non-daemonic threads created by a multiprocessing.Process should be joined on exit (#3111) by Antoine Pitrou · 7 years ago
  29. 163468a bpo-16500: Don't use string constants for os.register_at_fork() behavior (#1834) by Gregory P. Smith · 7 years ago
  30. 4a8bcdf bpo-16500: Use register_at_fork() in the threading module (#1843) by Antoine Pitrou · 7 years ago
  31. f7ecfac Doc nits for bpo-16500 (#1841) by Antoine Pitrou · 7 years ago
  32. aefa7eb bpo-6532: Make the thread id an unsigned integer. (#781) by Serhiy Storchaka · 7 years ago
  33. f3a9fab bpo-29376: Fix assertion error in threading._DummyThread.is_alive() (GH-236) by Xiang Zhang · 7 years ago
  34. 02b75ab Merge spelling and grammar fixes from 3.5 by Martin Panter · 8 years ago
  35. 69332c1 Fix spelling and grammar in documentation and code comments by Martin Panter · 8 years ago
  36. 3e04d5b Issue #27076: Merge spelling from 3.5 by Martin Panter · 8 years ago
  37. 46f5072 Issue #27076: Doc, comment and tests spelling fixes by Martin Panter · 8 years ago
  38. e7041fa Closes #26987: Merge with 3.5 by Zachary Ware · 8 years ago
  39. 78b5ed9 Issue #26987: Correct implementation to match comment by Zachary Ware · 8 years ago
  40. 19e69c5 Issue #23883: Add missing APIs to __all__; patch by Jacek Kołodziej by Martin Panter · 9 years ago
  41. 062f4ce merge 3.4 (#25362) by Benjamin Peterson · 9 years ago
  42. 414918a use the with statement for locking the internal condition (closes #25362) by Benjamin Peterson · 9 years ago
  43. 72181b2 merge 3.4 (#25319) by Benjamin Peterson · 9 years ago
  44. 15982aa reinitialize an Event's Condition with a regular lock (closes #25319) by Benjamin Peterson · 9 years ago
  45. f5387c0 Merge: #11866: Eliminate race condition in the computation of names for new threads. by R David Murray · 10 years ago
  46. b186f1df #11866: Eliminate race condition in the computation of names for new threads. by R David Murray · 10 years ago
  47. c904e87 Issue #22423: Unhandled exception in thread no longer causes unhandled by Serhiy Storchaka · 10 years ago
  48. 52005c2 Issue #22423: Unhandled exception in thread no longer causes unhandled by Serhiy Storchaka · 10 years ago
  49. ae58649 Issue #22043: time.monotonic() is now always available by Victor Stinner · 10 years ago
  50. fa9211b Issue #22185: Fix an occasional RuntimeError in threading.Condition.wait() caused by mutation of the waiters queue without holding the lock. by Antoine Pitrou · 10 years ago
  51. a64b92e Issue #22185: Fix an occasional RuntimeError in threading.Condition.wait() caused by mutation of the waiters queue without holding the lock. by Antoine Pitrou · 10 years ago
  52. 62f4dad Issue 21137: Better repr for threading.Lock() by Raymond Hettinger · 10 years ago
  53. 7fa767e Issue #20976: pyflakes: Remove unused imports by Victor Stinner · 10 years ago
  54. 1095907 Remove stray semicolon by Antoine Pitrou · 10 years ago
  55. a577f1e Changed a comment to end grammar bikeshedding ;-) by Tim Peters · 11 years ago
  56. 7bad39f Fiddled Thread.join() to be a little simpler. Kinda ;-) by Tim Peters · 11 years ago
  57. e5bb0bf Issue #19399: fix sporadic test_subprocess failure. by Tim Peters · 11 years ago
  58. bb2ed51 merge with 3.3 by Georg Brandl · 11 years ago
  59. c30b59f Closes #17375: port new threading docstrings from 2.7. by Georg Brandl · 11 years ago
  60. e99bdb9 Issue 19158: a rare race in BoundedSemaphore could allow .release() too often. by Tim Peters · 11 years ago
  61. 7634e1c Issue 19158: a rare race in BoundedSemaphore could allow .release() too often. by Tim Peters · 11 years ago
  62. 72460fa Get "stopped" back into repr(Thread) when appropriate. by Tim Peters · 11 years ago
  63. b5e9ac9 Another stab at the thread cleanup patch. by Tim Peters · 11 years ago
  64. 7875523 Backed out changeset 1f5a7853680c by Tim Peters · 11 years ago
  65. 7a6054b Minor cleanup of the new scheme for detecting thread termination. by Tim Peters · 11 years ago
  66. c363a23 Issue 18984: Remove ._stopped Event from Thread internals. by Tim Peters · 11 years ago
  67. 5da7e79 Issue #18808 again: fix the after-fork logic for not-yet-started or already-stopped threads. by Antoine Pitrou · 11 years ago
  68. 68d7f78 Issue 18808: blind attempt to repair some buildbot failures. by Tim Peters · 11 years ago
  69. 7b47699 Issue #18808: Thread.join() now waits for the underlying thread state to be destroyed before returning. by Antoine Pitrou · 11 years ago
  70. b1dd557 Add docstring for threading.main_thread(). by Andrew Svetlov · 11 years ago
  71. 58b5c5a Issue #18882: Add threading.main_thread() function. by Andrew Svetlov · 11 years ago
  72. 79a53ea Issue #18418: After fork(), reinit all threads states, not only active ones. by Charles-François Natali · 11 years ago
  73. 9939cc8 Issue #18418: After fork(), reinit all threads states, not only active ones. by Charles-François Natali · 11 years ago
  74. 9a3777e #18705: merge with 3.3. by Ezio Melotti · 11 years ago
  75. 30b9d5d #18705: fix a number of typos. Patch by Févry Thibault. by Ezio Melotti · 11 years ago
  76. cd171c8 Issue #18200: Back out usage of ModuleNotFoundError (8d28d44f3a9a) by Brett Cannon · 11 years ago
  77. 0a14066 Issue #18200: Update the stdlib (except tests) to use ModuleNotFoundError. by Brett Cannon · 11 years ago
  78. b00b596 Issue #11714: Use 'with' statements to assure a Semaphore releases a by Serhiy Storchaka · 11 years ago
  79. 81a5855 Issue #11714: Use 'with' statements to assure a Semaphore releases a by Serhiy Storchaka · 11 years ago
  80. 5cbf3a0 Merge #17435: Don't use mutable default values in Timer. by R David Murray · 11 years ago
  81. 19aeb43 Issue #17435: Don't use mutable default values in Timer. by R David Murray · 11 years ago
  82. 3030728 Fix import by Raymond Hettinger · 11 years ago
  83. b65e579 Improve variable names by Raymond Hettinger · 11 years ago
  84. ec4b174 Issue #17385: Fix quadratic behavior in threading.Condition by Raymond Hettinger · 11 years ago
  85. 720da57 Update code to increment and decrement using the cleaner += 1 and -= 1 style. by Raymond Hettinger · 11 years ago
  86. ec89539 Issue #14428, #14397: Implement the PEP 418 by Victor Stinner · 12 years ago
  87. 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
  88. 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
  89. 3d7c878 Issue #14222: Use the new time.steady() function instead of time.time() for by Victor Stinner · 12 years ago
  90. 135b6d8 Close #13550: Remove the debug machinery from the threading module: remove by Victor Stinner · 12 years ago
  91. 7bbb6e8 merge 3.2 by Benjamin Peterson · 13 years ago
  92. 050a05a remove unused import by Benjamin Peterson · 13 years ago
  93. ded0348 Issue #13502: threading: Fix a race condition in Event.wait() that made it by Charles-François Natali · 13 years ago
  94. 6d5f9e7 Issue #11870: threading: Properly reinitialize threads internal locks and by Charles-François Natali · 13 years ago
  95. 61d28d6 Issue #13502: threading: Fix a race condition in Event.wait() that made it by Charles-François Natali · 13 years ago
  96. b055bf6 Issue #11870: threading: Properly reinitialize threads internal locks and by Charles-François Natali · 13 years ago
  97. f106449 Merge with 3.2. by Ezio Melotti · 13 years ago
  98. e130a52 Remove duplication. by Ezio Melotti · 13 years ago
  99. 7761b95 add ThreadError to threading.__all__ (closes #12679) by Benjamin Peterson · 13 years ago
  100. 0cdd445 Remove indirection in threading (issue #10968). by Éric Araujo · 13 years ago