1. 325a1c2 Fix markup errors in the docs and amend suspicious ignores. by Georg Brandl · 11 years ago
  2. 9e0ae53 Issue #18757: Improved cross-references in the concurrent package. by Serhiy Storchaka · 11 years ago
  3. d7d3f37 Issue #14206: Clarify docs for Queue.join_cancel_thread(). by Richard Oudkerk · 11 years ago
  4. b3c4b98 Issue #17273: Clarify that pool methods can only be used by parent process. by Richard Oudkerk · 11 years ago
  5. 2b310dd Fix typo. by Richard Oudkerk · 11 years ago
  6. 7b69da7 Clarify note and fix typo. by Richard Oudkerk · 11 years ago
  7. 64c25b4 Issue #15818: Typo in docs. by Richard Oudkerk · 11 years ago
  8. 95fe1a7 Issue #18277: Document quirks of multiprocessing queue. by Richard Oudkerk · 11 years ago
  9. c228e96 #16518: use "bytes-like object" throughout the docs. by Ezio Melotti · 11 years ago
  10. c09959a #17635: fix wrong function name in multiprocessing docs. by Ezio Melotti · 11 years ago
  11. 20d1924 #17364: merge with 3.2. by Ezio Melotti · 12 years ago
  12. 33e20d1 #17364: remove documentation for a function that does not exist. by Ezio Melotti · 12 years ago
  13. 23089ab Fix typo in multiprocessing documentation, thanks to Dmitry Tolstoy from docs@ by Andrew Svetlov · 12 years ago
  14. ace5162 starmap/starmap_async for whatsnew, and fix multiprocessing Pool markup. by R David Murray · 12 years ago
  15. ef4d286 #10968: commit threading doc changes and corresponding whatsnew entry. by R David Murray · 12 years ago
  16. 8429b67 #15831: merge with 3.2 by Ezio Melotti · 12 years ago
  17. e0add76 #15831: document multiple signatures on different lines. Patch by Chris Jerdonek. by Ezio Melotti · 12 years ago
  18. c3a2c59 Merge by Richard Oudkerk · 12 years ago
  19. b517596 Issue #15901: Change example to use byte string instead of string by Richard Oudkerk · 12 years ago
  20. 67a58cc Merge by Richard Oudkerk · 12 years ago
  21. 264e9ac Issue #14501: Clarify that authentication keys are byte strings by Richard Oudkerk · 12 years ago
  22. 78da3bc Additional fixes to multiprocessing docs (for issue #13686) by Eli Bendersky · 12 years ago
  23. b674dcf Some fixes for the documentation of multiprocessing (per issue #13686) by Eli Bendersky · 12 years ago
  24. c9d2fc3 Merge with 3.2. by Georg Brandl · 12 years ago
  25. 29feb1f Make call of os.getppid() conditional: it is not available on Windows. by Georg Brandl · 12 years ago
  26. 633c4d9 Issue #15064: Use with-blocks for some examples in docs. by Richard Oudkerk · 12 years ago
  27. ac38571 Issue #15064: Make BaseManager.__enter__() start server if necessary. by Richard Oudkerk · 12 years ago
  28. d69cfe8 Issue #15064: Implement context manager protocol for multiprocessing types by Richard Oudkerk · 12 years ago
  29. 3730a17 Issue #14059: Implement multiprocessing.Barrier by Richard Oudkerk · 12 years ago
  30. f0604fd Issue #3518: Remove references to non-existent BaseManager.from_address() method by Richard Oudkerk · 12 years ago
  31. 87ea780 Use Python 3.x-style keyword only arg in Array() by Richard Oudkerk · 12 years ago
  32. fc6accc Remove outdated statements about threading and imports. by Antoine Pitrou · 12 years ago
  33. 59d5404 Issue #14753: Make multiprocessing treat negative timeouts as it did in 3.2 by Richard Oudkerk · 12 years ago
  34. 5438ed1 Issue #4892: multiprocessing Connections can now be transferred over multiprocessing Connections. by Antoine Pitrou · 12 years ago
  35. c8ce715 Issue #14087: multiprocessing: add Condition.wait_for(). Patch by sbt. by Charles-François Natali · 12 years ago
  36. 584fbbb #14535: merge with 3.2. by Ezio Melotti · 12 years ago
  37. f86b28e #14535: fix code highlight in multiprocessing examples. Patch by Tshepang Lekhonkhobe. by Ezio Melotti · 12 years ago
  38. bdb1cf1 Issue #12328: Fix multiprocessing's use of overlapped I/O on Windows. by Antoine Pitrou · 13 years ago
  39. cd77815 Issue #11836: document and expose multiprocessing.SimpleQueue by Sandro Tosi · 13 years ago
  40. 5cb522c Issue #11836: document multiprocessing.queues.SimpleQueue by Sandro Tosi · 13 years ago
  41. 94015f1 merge 3.2 by Benjamin Peterson · 13 years ago
  42. f51ebf9 threading primitives now have timeouts by Benjamin Peterson · 13 years ago
  43. b52e7a9 clarify recv* are blocking operations; thanks to Chris Kogelnik from docs@ by Sandro Tosi · 13 years ago
  44. d08effe Some formatting & grammar fixes for the multiprocessing doc by Eli Bendersky · 13 years ago
  45. 5e60857 merge with 3.2 by Sandro Tosi · 13 years ago
  46. ca6b7a1 Some formatting & grammar fixes for the multiprocessing doc by Eli Bendersky · 13 years ago
  47. de911b2 Issue #12708: Add starmap() and starmap_async() methods (similar to itertools.starmap()) to multiprocessing.Pool. by Antoine Pitrou · 13 years ago
  48. f106449 Merge with 3.2. by Ezio Melotti · 13 years ago
  49. e130a52 Remove duplication. by Ezio Melotti · 13 years ago
  50. 62ab10a0 Replace mentions of IOError by Antoine Pitrou · 13 years ago
  51. 74470b5 merge from 3.2. Fix closes Issue11155 - Correct the multiprocessing.Queue.put's arg (replace 'item' with 'obj') in the docs. Patch by Westley Martínez. by Senthil Kumaran · 13 years ago
  52. e969a21 Fix closes Issue11155 - Correct the multiprocessing.Queue.put's arg (replace 'item' with 'obj') in the docs. Patch by Westley Martínez. by Senthil Kumaran · 13 years ago
  53. 1a41a41 #12709: merge with 3.2 by Sandro Tosi · 13 years ago
  54. db79e95 #12709: add error_callback argument to map_async documentation by Sandro Tosi · 13 years ago
  55. acd9f7c Issue #11784: Improve multiprocessing.Process.join() documentation. Patch by by Charles-François Natali · 13 years ago
  56. 176f07d Issue #12040: Expose a new attribute `sentinel` on instances of by Antoine Pitrou · 13 years ago
  57. 025691a #11952: merge with 3.2. by Ezio Melotti · 13 years ago
  58. 17797a7 #11952: merge with 3.1. by Ezio Melotti · 13 years ago
  59. 2ee8835 #11952: Fix typo in multiprocessing doc. by Ezio Melotti · 13 years ago
  60. 1331263 Merge from 3.1 by Ross Lagerwall · 14 years ago
  61. 8fea2e6 Issue #10885: Fix multiprocessing docs typo by Ross Lagerwall · 14 years ago
  62. 41b1228 Merge with 3.2 by Ross Lagerwall · 14 years ago
  63. 0bd4deb Issue #6064: Add a `daemon` keyword argument to the threading.Thread by Antoine Pitrou · 14 years ago
  64. fa66d58 Merged revisions 87197-87198 via svnmerge from by Antoine Pitrou · 14 years ago
  65. 64a467d Homogenize the "optional OS services" menu by Antoine Pitrou · 14 years ago
  66. f55aa80 Merged revisions 85820,85823,85825,85840,85843-85845,85849-85851,85855,85867,85875,85907-85908,85911,85914 via svnmerge from by Georg Brandl · 14 years ago
  67. d62ecbf Merged revisions 85728,85731,85735,85766-85771,85773,85777 via svnmerge from by Georg Brandl · 14 years ago
  68. c524cff Merged revisions 85530,85532-85534,85538-85543,85546-85548 via svnmerge from by Georg Brandl · 14 years ago
  69. da825ab Merged revisions 86670 via svnmerge from by Éric Araujo · 14 years ago
  70. 28053fb Remove unnecessary `object` base class in docs (#10366). by Éric Araujo · 14 years ago
  71. ff7ffdd Issue #8028: multiprocessing: Documented that ``Process.terminate`` by Ask Solem · 14 years ago
  72. 518eaa8 Issue #7707: Documented that multiprocessing.Queue operations during by Ask Solem · 14 years ago
  73. 1d3b893 Documented the new error_callback keyword argument to multiprocessing.Pool's apply_async and map_async by Ask Solem · 14 years ago
  74. fd15191 Demote one warning to a note. There's no security risk here, just a note on usage and avialability. by Raymond Hettinger · 14 years ago
  75. 3017689 send_bytes obviously needs bytes... by Georg Brandl · 14 years ago
  76. f285bcc Be consistent in the spelling of thread-safe(ty). by Georg Brandl · 14 years ago
  77. 17ef0d5 Note that maxtasksperchild is new in 3.2. by Georg Brandl · 14 years ago
  78. 3ed4114 #9801: document how list and dict proxies created by Managers behave w.r.t. mutable items. by Georg Brandl · 14 years ago
  79. e6788db Merged revisions 85347 via svnmerge from by Senthil Kumaran · 14 years ago
  80. 79941b5 Fix Issue7285 - multiprocessing module, example code error. by Senthil Kumaran · 14 years ago
  81. 60203b4 Migrate to Sphinx 1.0 C language constructs. by Georg Brandl · 14 years ago
  82. 4b05466 Merged revisions 84945 via svnmerge from by Georg Brandl · 14 years ago
  83. 57a5e3f Merged revisions 84249,84264,84326-84327,84407,84476,84480-84482,84484,84530-84531,84553,84619,84684,84915-84916 via svnmerge from by Georg Brandl · 14 years ago
  84. 914a218 Merged revisions 82629,82632,82724,82757-82758,82760-82763,82798-82799,82801 via svnmerge from by Georg Brandl · 14 years ago
  85. 1648924 Merged revisions 79901,80170,80273,80342-80343,81061,81366,81368,81370,81840 via svnmerge from by Georg Brandl · 14 years ago
  86. 6faee4e #9911: doc copyedits. by Georg Brandl · 14 years ago
  87. 0b37b33 Fix missing word. by Georg Brandl · 14 years ago
  88. 47d48bb #8338: fix outdated class name. by Georg Brandl · 14 years ago
  89. 8a1450d Recorded merge of revisions 81442 via svnmerge from by Georg Brandl · 14 years ago
  90. 592296e Merged revisions 81440 via svnmerge from by Georg Brandl · 14 years ago
  91. b3959bd Fix indentation. by Georg Brandl · 15 years ago
  92. 21896a3 Merged revisions 77952,78030,78102,78104,78107,78206,78216,78296-78297,78328,78331-78332,78336,78339,78343,78378-78379,78415,78559,78717,78791 via svnmerge from by Benjamin Peterson · 15 years ago
  93. 1f0b658 Merged revisions 77794 via svnmerge from by Jesse Noller · 15 years ago
  94. 890c193 Merged revisions 76906 via svnmerge from by Ezio Melotti · 15 years ago
  95. 0639d5a Merged revisions 76904 via svnmerge from by Ezio Melotti · 15 years ago
  96. dd31d11 Merged revisions 76435 via svnmerge from by Jesse Noller · 15 years ago
  97. 394cd70 Merged revisions 76433 via svnmerge from by Jesse Noller · 15 years ago
  98. 713e042 Merged revisions 74764 via svnmerge from by Ezio Melotti · 15 years ago
  99. 985e24d fixed more examples that were using u"", print without () and unicode/str instead of str/bytes by Ezio Melotti · 15 years ago
  100. a833206 Merged revisions 74745 via svnmerge from by Benjamin Peterson · 15 years ago