1. 4b6c417 bpo-29376: Fix assertion error in threading._DummyThread.is_alive() (GH-330) by Xiang Zhang · 7 years ago
  2. 02b75ab Merge spelling and grammar fixes from 3.5 by Martin Panter · 8 years ago
  3. 69332c1 Fix spelling and grammar in documentation and code comments by Martin Panter · 8 years ago
  4. 3e04d5b Issue #27076: Merge spelling from 3.5 by Martin Panter · 8 years ago
  5. 46f5072 Issue #27076: Doc, comment and tests spelling fixes by Martin Panter · 8 years ago
  6. e7041fa Closes #26987: Merge with 3.5 by Zachary Ware · 8 years ago
  7. 78b5ed9 Issue #26987: Correct implementation to match comment by Zachary Ware · 8 years ago
  8. 19e69c5 Issue #23883: Add missing APIs to __all__; patch by Jacek Kołodziej by Martin Panter · 9 years ago
  9. 062f4ce merge 3.4 (#25362) by Benjamin Peterson · 9 years ago
  10. 414918a use the with statement for locking the internal condition (closes #25362) by Benjamin Peterson · 9 years ago
  11. 72181b2 merge 3.4 (#25319) by Benjamin Peterson · 9 years ago
  12. 15982aa reinitialize an Event's Condition with a regular lock (closes #25319) by Benjamin Peterson · 9 years ago
  13. f5387c0 Merge: #11866: Eliminate race condition in the computation of names for new threads. by R David Murray · 10 years ago
  14. b186f1df #11866: Eliminate race condition in the computation of names for new threads. by R David Murray · 10 years ago
  15. c904e87 Issue #22423: Unhandled exception in thread no longer causes unhandled by Serhiy Storchaka · 10 years ago
  16. 52005c2 Issue #22423: Unhandled exception in thread no longer causes unhandled by Serhiy Storchaka · 10 years ago
  17. ae58649 Issue #22043: time.monotonic() is now always available by Victor Stinner · 10 years ago
  18. 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
  19. 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
  20. 62f4dad Issue 21137: Better repr for threading.Lock() by Raymond Hettinger · 10 years ago
  21. 7fa767e Issue #20976: pyflakes: Remove unused imports by Victor Stinner · 10 years ago
  22. 1095907 Remove stray semicolon by Antoine Pitrou · 10 years ago
  23. a577f1e Changed a comment to end grammar bikeshedding ;-) by Tim Peters · 11 years ago
  24. 7bad39f Fiddled Thread.join() to be a little simpler. Kinda ;-) by Tim Peters · 11 years ago
  25. e5bb0bf Issue #19399: fix sporadic test_subprocess failure. by Tim Peters · 11 years ago
  26. bb2ed51 merge with 3.3 by Georg Brandl · 11 years ago
  27. c30b59f Closes #17375: port new threading docstrings from 2.7. by Georg Brandl · 11 years ago
  28. e99bdb9 Issue 19158: a rare race in BoundedSemaphore could allow .release() too often. by Tim Peters · 11 years ago
  29. 7634e1c Issue 19158: a rare race in BoundedSemaphore could allow .release() too often. by Tim Peters · 11 years ago
  30. 72460fa Get "stopped" back into repr(Thread) when appropriate. by Tim Peters · 11 years ago
  31. b5e9ac9 Another stab at the thread cleanup patch. by Tim Peters · 11 years ago
  32. 7875523 Backed out changeset 1f5a7853680c by Tim Peters · 11 years ago
  33. 7a6054b Minor cleanup of the new scheme for detecting thread termination. by Tim Peters · 11 years ago
  34. c363a23 Issue 18984: Remove ._stopped Event from Thread internals. by Tim Peters · 11 years ago
  35. 5da7e79 Issue #18808 again: fix the after-fork logic for not-yet-started or already-stopped threads. by Antoine Pitrou · 11 years ago
  36. 68d7f78 Issue 18808: blind attempt to repair some buildbot failures. by Tim Peters · 11 years ago
  37. 7b47699 Issue #18808: Thread.join() now waits for the underlying thread state to be destroyed before returning. by Antoine Pitrou · 11 years ago
  38. b1dd557 Add docstring for threading.main_thread(). by Andrew Svetlov · 11 years ago
  39. 58b5c5a Issue #18882: Add threading.main_thread() function. by Andrew Svetlov · 11 years ago
  40. 79a53ea Issue #18418: After fork(), reinit all threads states, not only active ones. by Charles-François Natali · 11 years ago
  41. 9939cc8 Issue #18418: After fork(), reinit all threads states, not only active ones. by Charles-François Natali · 11 years ago
  42. 9a3777e #18705: merge with 3.3. by Ezio Melotti · 11 years ago
  43. 30b9d5d #18705: fix a number of typos. Patch by Févry Thibault. by Ezio Melotti · 11 years ago
  44. cd171c8 Issue #18200: Back out usage of ModuleNotFoundError (8d28d44f3a9a) by Brett Cannon · 11 years ago
  45. 0a14066 Issue #18200: Update the stdlib (except tests) to use ModuleNotFoundError. by Brett Cannon · 11 years ago
  46. b00b596 Issue #11714: Use 'with' statements to assure a Semaphore releases a by Serhiy Storchaka · 11 years ago
  47. 81a5855 Issue #11714: Use 'with' statements to assure a Semaphore releases a by Serhiy Storchaka · 11 years ago
  48. 5cbf3a0 Merge #17435: Don't use mutable default values in Timer. by R David Murray · 11 years ago
  49. 19aeb43 Issue #17435: Don't use mutable default values in Timer. by R David Murray · 11 years ago
  50. 3030728 Fix import by Raymond Hettinger · 11 years ago
  51. b65e579 Improve variable names by Raymond Hettinger · 11 years ago
  52. ec4b174 Issue #17385: Fix quadratic behavior in threading.Condition by Raymond Hettinger · 11 years ago
  53. 720da57 Update code to increment and decrement using the cleaner += 1 and -= 1 style. by Raymond Hettinger · 11 years ago
  54. ec89539 Issue #14428, #14397: Implement the PEP 418 by Victor Stinner · 12 years ago
  55. 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
  56. 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
  57. 3d7c878 Issue #14222: Use the new time.steady() function instead of time.time() for by Victor Stinner · 12 years ago
  58. 135b6d8 Close #13550: Remove the debug machinery from the threading module: remove by Victor Stinner · 12 years ago
  59. 7bbb6e8 merge 3.2 by Benjamin Peterson · 12 years ago
  60. 050a05a remove unused import by Benjamin Peterson · 12 years ago
  61. ded0348 Issue #13502: threading: Fix a race condition in Event.wait() that made it by Charles-François Natali · 12 years ago
  62. 6d5f9e7 Issue #11870: threading: Properly reinitialize threads internal locks and by Charles-François Natali · 12 years ago
  63. 61d28d6 Issue #13502: threading: Fix a race condition in Event.wait() that made it by Charles-François Natali · 12 years ago
  64. b055bf6 Issue #11870: threading: Properly reinitialize threads internal locks and by Charles-François Natali · 12 years ago
  65. f106449 Merge with 3.2. by Ezio Melotti · 13 years ago
  66. e130a52 Remove duplication. by Ezio Melotti · 13 years ago
  67. 7761b95 add ThreadError to threading.__all__ (closes #12679) by Benjamin Peterson · 13 years ago
  68. 0cdd445 Remove indirection in threading (issue #10968). by Éric Araujo · 13 years ago
  69. 428bc6c Issue #12573: Add resource checks for dangling Thread and Process objects. by Antoine Pitrou · 13 years ago
  70. c081c0c Issue #12573: Add resource checks for dangling Thread and Process objects. by Antoine Pitrou · 13 years ago
  71. 2a12974 Close #12028: Make threading._get_ident() public, rename it to by Victor Stinner · 13 years ago
  72. d5c355c Issue #11223: Replace threading._info() by sys.thread_info by Victor Stinner · 13 years ago
  73. c2824d4 Issue #11915: threading.RLock()._release_save() raises a RuntimeError if the by Victor Stinner · 13 years ago
  74. 754851f Issue #11223: Add threading._info() function providing informations about the by Victor Stinner · 13 years ago
  75. 0bd4deb Issue #6064: Add a `daemon` keyword argument to the threading.Thread by Antoine Pitrou · 13 years ago
  76. 5bdfd91 Remove out-of-date comment by Raymond Hettinger · 13 years ago
  77. 5cee47f Add entry for Barrier objects. by Raymond Hettinger · 13 years ago
  78. 9bd4a24 Fix the new bug introduced in the r87710 fix for issue 6643. DummyThread by Gregory P. Smith · 13 years ago
  79. 96c886c issue6643 - Two locks held within the threading module on each thread instance by Gregory P. Smith · 13 years ago
  80. 401edd6 Issue #4188: Avoid creating dummy thread objects when logging operations by Antoine Pitrou · 13 years ago
  81. 6331520 Issue 10260 Adding the wait_for() method to threading.Condition by Kristján Valur Jónsson · 14 years ago
  82. 3be0003 issue 8777 Add threading.Barrier by Kristján Valur Jónsson · 14 years ago
  83. b9a4391 #10218: return timeout status from Condition.wait, mirroring other primitives' behavior. by Georg Brandl · 14 years ago
  84. 148724d Rip out old testing code that was inlined in threading. by Brett Cannon · 14 years ago
  85. 0454af9 Issue #850728: Add a *timeout* parameter to the `acquire()` method of by Antoine Pitrou · 14 years ago
  86. 7c3e577 Issue #7316: the acquire() method of lock objects in the :mod:`threading` by Antoine Pitrou · 14 years ago
  87. fdd4d0f Merged revisions 79817 via svnmerge from by Senthil Kumaran · 14 years ago
  88. 3fdd964 Merged revisions 78517 via svnmerge from by Gregory P. Smith · 14 years ago
  89. 434736a Issue #3001: Add a C implementation of recursive locks which is used by by Antoine Pitrou · 15 years ago
  90. b087268 Merged revisions 76172 via svnmerge from by Antoine Pitrou · 15 years ago
  91. bdec11f Merged revisions 76117 via svnmerge from by Antoine Pitrou · 15 years ago
  92. 495f7b5 Merged revisions 75365,75394,75402-75403,75418,75459,75484,75592-75596,75600,75602-75607,75610-75613,75616-75617,75623,75627,75640,75647,75696,75795 via svnmerge from by Georg Brandl · 15 years ago
  93. 7b1c414 Use true booleans. by Georg Brandl · 15 years ago
  94. d23f822 Merged revisions 70712,70714,70764-70765,70769-70771,70773,70776-70777,70788-70789,70824,70828,70832,70836,70842,70851,70855,70857,70866-70872,70883,70885,70893-70894,70896-70897,70903,70905-70907,70915,70927,70933,70951,70960,70962-70964,70998,71001,71006,71008,71010-71011,71019,71037,71056,71094,71101-71103,71106,71119,71123,71149-71150,71203,71212,71214-71217,71221,71240 via svnmerge from by Benjamin Peterson · 15 years ago
  95. 5fe291f Issue #874900: fix behaviour of threading module after a fork. by Antoine Pitrou · 16 years ago
  96. b3085c9 remove the deprecation warnings for the old threading API; update the docs by Benjamin Peterson · 16 years ago
  97. f0923f5 add full deprecation warnings for old threading APIs by Benjamin Peterson · 16 years ago
  98. 6640d72 Merged revisions 65826 via svnmerge from by Benjamin Peterson · 16 years ago
  99. fdbea96 change is_daemon, set_daemon, get_name, and set_name to properties by Benjamin Peterson · 16 years ago
  100. 773c17b Merged revisions 65818 via svnmerge from by Benjamin Peterson · 16 years ago