1. 31e7f50 Issue #24952: Clarify default argument of stack_size() in threading, _thread by Martin Panter · 9 years ago
  2. b4760ef Back porting changeset db302b88fdb6 to 3.4 branch, which fixed multiple documentation typos. by Senthil Kumaran · 9 years ago
  3. 4882cac Issue #23943: Fix typos. Patch by Piotr Kasprzyk. by Berker Peksag · 9 years ago
  4. 1486799 Issue #22369: Change "context manager protocol" to "context management protocol". by Serhiy Storchaka · 10 years ago
  5. 55f4d56 merge with 3.3 by Georg Brandl · 11 years ago
  6. b19ef18 Closes #18927: Lock.acquire only accepts -1 or positive values for timeout. by Georg Brandl · 11 years ago
  7. 58b5c5a Issue #18882: Add threading.main_thread() function. by Andrew Svetlov · 11 years ago
  8. 9e0ae53 Issue #18757: Improved cross-references in the concurrent package. by Serhiy Storchaka · 11 years ago
  9. 19aeb43 Issue #17435: Don't use mutable default values in Timer. by R David Murray · 11 years ago
  10. f8def28 Issue #17193: Use binary prefixes (KiB, MiB, GiB) for memory units. by Serhiy Storchaka · 11 years ago
  11. db0b7be Issue #17208: add a note about the termination behaviour of daemon threads. by Antoine Pitrou · 11 years ago
  12. 38b8254 Issue #17208: add a note about the termination behaviour of daemon threads. by Antoine Pitrou · 11 years ago
  13. 6d043fc #16978: merge with 3.2. by Ezio Melotti · 11 years ago
  14. ff12fae #16978: rephrase sentence and fix typo. Initial patch by Tshepang Lekhonkhobe. by Ezio Melotti · 11 years ago
  15. ef4d286 #10968: commit threading doc changes and corresponding whatsnew entry. by R David Murray · 12 years ago
  16. 8b61611 #15865: merge with 3.2. by Ezio Melotti · 12 years ago
  17. e08824c Remove :noindex: for threading.Thread which killed all reference links to it by Eli Bendersky · 12 years ago
  18. fc6accc Remove outdated statements about threading and imports. by Antoine Pitrou · 12 years ago
  19. dd95974 #14823: Simplify threading.Lock.acquire argument discussion. by R David Murray · 12 years ago
  20. f7a6615 #14823: Simplify threading.Lock.acquire argument discussion. by R David Murray · 12 years ago
  21. 1c94ff8 Improve the threading.Condition docs. by Antoine Pitrou · 12 years ago
  22. f6cd9b2 Improve the threading.Condition docs. by Antoine Pitrou · 12 years ago
  23. 61d85ba Merge by Antoine Pitrou · 12 years ago
  24. b96a354 Small improvements to the threading docs: better publicize support for the with statement. by Antoine Pitrou · 12 years ago
  25. 2c9f104 Fix some markup in the threading docs. by Antoine Pitrou · 12 years ago
  26. 126aef7 Issue #8799: Fix and improve the threading.Condition documentation. by Antoine Pitrou · 12 years ago
  27. 5d1c2f0 Issue #14502: merge with 3.2 by Sandro Tosi · 12 years ago
  28. fee3fc7 Issue #14502: release() and unlocked lock generates a ThreadError by Sandro Tosi · 12 years ago
  29. 9a13b43 Replace ThreadError by RuntimeError: the former is now an obsolete alias of the latter. by Georg Brandl · 12 years ago
  30. ded0348 Issue #13502: threading: Fix a race condition in Event.wait() that made it by Charles-François Natali · 13 years ago
  31. 61d28d6 Issue #13502: threading: Fix a race condition in Event.wait() that made it by Charles-François Natali · 13 years ago
  32. bf9d34c Issue 12767: document the argument of threading.Condition.notify by Eli Bendersky · 13 years ago
  33. d44af82 Issue #12767: documenting threading.Condition.notify by Eli Bendersky · 13 years ago
  34. e130a52 Remove duplication. by Ezio Melotti · 13 years ago
  35. f106449 Merge with 3.2. by Ezio Melotti · 13 years ago
  36. 2a12974 Close #12028: Make threading._get_ident() public, rename it to by Victor Stinner · 13 years ago
  37. d5c355c Issue #11223: Replace threading._info() by sys.thread_info by Victor Stinner · 13 years ago
  38. 754851f Issue #11223: Add threading._info() function providing informations about the by Victor Stinner · 13 years ago
  39. d6d17c5 No need to put this at top by Antoine Pitrou · 13 years ago
  40. 0bd4deb Issue #6064: Add a `daemon` keyword argument to the threading.Thread by Antoine Pitrou · 13 years ago
  41. bd0c897 #11083 typo: RuntimeException -> RuntimeError by Brian Curtin · 13 years ago
  42. 5cee47f Add entry for Barrier objects. by Raymond Hettinger · 14 years ago
  43. 4f707fd Separate source link from main text. by Raymond Hettinger · 14 years ago
  44. 1048094 Move source links to consistent location and remove wordy, big yellow boxes. by Raymond Hettinger · 14 years ago
  45. 7088abd Revert r87821 which moved the source link to the wrong section (from the module intro covering the module to a section on thread imports). by Raymond Hettinger · 14 years ago
  46. 39e352c Put link to source at the end. There's nothing edificating in threading.py. by Antoine Pitrou · 14 years ago
  47. a572476 #10846: fix typo. by Georg Brandl · 14 years ago
  48. 0034281 Elaborate about the GIL. by Antoine Pitrou · 14 years ago
  49. 810023d Issue #8844: Regular and recursive lock acquisitions can now be interrupted by Antoine Pitrou · 14 years ago
  50. 64a467d Homogenize the "optional OS services" menu by Antoine Pitrou · 14 years ago
  51. 6331520 Issue 10260 Adding the wait_for() method to threading.Condition by Kristján Valur Jónsson · 14 years ago
  52. 6e6cb8e Provide links to Python source where the code is short, readable and by Éric Araujo · 14 years ago
  53. 5bc1686 Review new Barrier docs. by Georg Brandl · 14 years ago
  54. 3be0003 issue 8777 Add threading.Barrier by Kristján Valur Jónsson · 14 years ago
  55. b9a4391 #10218: return timeout status from Condition.wait, mirroring other primitives' behavior. by Georg Brandl · 14 years ago
  56. f285bcc Be consistent in the spelling of thread-safe(ty). by Georg Brandl · 14 years ago
  57. 6faee4e #9911: doc copyedits. by Georg Brandl · 14 years ago
  58. 179249f #9689: add links from overview to in-depth class API descriptions. by Georg Brandl · 14 years ago
  59. 67b21b7 Consistency check for versionadded/changed directives. by Georg Brandl · 14 years ago
  60. a57edd0 Clarify the wording for threading.is_alive() to not suggest something is by Brett Cannon · 14 years ago
  61. adbc009 Add version{added,changed} for lock timeout support. by Antoine Pitrou · 14 years ago
  62. 0454af9 Issue #850728: Add a *timeout* parameter to the `acquire()` method of by Antoine Pitrou · 14 years ago
  63. 7c3e577 Issue #7316: the acquire() method of lock objects in the :mod:`threading` by Antoine Pitrou · 14 years ago
  64. f8754a6 Update versionadded/changed. by Ezio Melotti · 14 years ago
  65. d69fe2a Merged revisions 77712,77740-77741,77756,77886,77902,77936 via svnmerge from by Benjamin Peterson · 14 years ago
  66. 4ac9ce4 Merged revisions 74779-74786,74793,74795,74811,74860-74861,74863,74876,74886,74896,74901,74903,74908,74912,74930,74933,74943,74946,74952-74955,75015,75019,75032,75068,75076,75095,75098,75102,75129,75139,75230 via svnmerge from by Benjamin Peterson · 15 years ago
  67. 7f01a13 Last round of adapting style of documenting argument default values. by Georg Brandl · 15 years ago
  68. 502d9a5 Merged revisions 74207 via svnmerge from by Georg Brandl · 15 years ago
  69. 7a72b3a Recorded merge of revisions 74210 via svnmerge from by Georg Brandl · 15 years ago
  70. 0192bff Merged revisions 71607,71653,71696,71771,71786 via svnmerge from by Georg Brandl · 15 years ago
  71. 35a8836 Update whatsnew based on doc search. by Raymond Hettinger · 15 years ago
  72. 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
  73. 5c6d787 Merged revisions 69129-69131,69139-69140,69143,69154-69159,69169,69288-69289,69293,69297-69301,69348 via svnmerge from by Benjamin Peterson · 15 years ago
  74. 770b0be #4808: move old API below new API doc. by Georg Brandl · 16 years ago
  75. a971c65 Merged revisions 67117-67119,67123-67124,67143 via svnmerge from by Georg Brandl · 16 years ago
  76. b3085c9 remove the deprecation warnings for the old threading API; update the docs by Benjamin Peterson · 16 years ago
  77. c4fe6f3 Merged revisions 65780,65782,65785,65809,65812,65834,65846,65859,65861 via svnmerge from by Benjamin Peterson · 16 years ago
  78. 8bdd545 Merged revisions 65842 via svnmerge from by Benjamin Peterson · 16 years ago
  79. 773c17b Merged revisions 65818 via svnmerge from by Benjamin Peterson · 16 years ago
  80. f992640 Fix last traces of old threading API. by Georg Brandl · 16 years ago
  81. 672b803 Merged revisions 64125 via svnmerge from by Benjamin Peterson · 16 years ago
  82. 0c77a82 Merged revisions 63829-63831,63858,63865,63879,63882,63948,63970-63972,63976,63989,64014-64015,64021-64022,64063-64065,64067 via svnmerge from by Georg Brandl · 16 years ago
  83. 2067bfd Rename thread to _thread and dummy_thread to _dummy_thread. Issue #2875. by Georg Brandl · 16 years ago
  84. f260e44 Rename Queue module to queue. by Alexandre Vassalotti · 16 years ago
  85. d7cce26 Remove the mutex module. by Brett Cannon · 16 years ago
  86. dd15f6c Merged revisions 61239-61249,61252-61257,61260-61264,61269-61275,61278-61279,61285-61286,61288-61290,61298,61303-61305,61312-61314,61317,61329,61332,61344,61350-61351,61363-61376,61378-61379,61382-61383,61387-61388,61392,61395-61396,61402-61403 via svnmerge from by Christian Heimes · 16 years ago
  87. 836baa5 Merged revisions 61038,61042-61045,61047,61050,61053,61055-61056,61061-61064,61066-61080 via svnmerge from by Christian Heimes · 16 years ago
  88. d3eb5a15 Merged revisions 61003-61033 via svnmerge from by Christian Heimes · 16 years ago
  89. fceab5a Merged revisions 60080-60089,60091-60093 via svnmerge from by Georg Brandl · 17 years ago
  90. faf2f63 Merged revisions 59703-59773 via svnmerge from by Christian Heimes · 17 years ago
  91. 89d996e Merged revisions 57778-58052 via svnmerge from by Thomas Wouters · 17 years ago
  92. c79461b Partial py3k-ification of Doc/library/: convert has_key references into either 'k in d' or __contains__; normalize raise statements; convert print statements into print function calls. by Collin Winter · 17 years ago
  93. 55ac8f0 Get rid of the remaining versionadded/versionchanged directives. by Georg Brandl · 17 years ago
  94. 116aa62 Move the 3k reST doc tree in place. by Georg Brandl · 17 years ago