1. b523f84 Implement PEP 451 (ModuleSpec). by Eric Snow · 11 years ago
  2. 634919a Issue #17276: MD5 as default digestmod for HMAC is deprecated. The HMAC by Christian Heimes · 11 years ago
  3. 69cce48 Merge. by Richard Oudkerk · 11 years ago
  4. 8731d7b Fix handling of SystemExit and exit code. Patch by Brodie Rao. by Richard Oudkerk · 11 years ago
  5. e943697 Issue #19478: Make choice of semaphore prefix more flexible. by Richard Oudkerk · 11 years ago
  6. e90cedb Issue #19425 -- a pickling error should not cause pool to hang. by Richard Oudkerk · 11 years ago
  7. 33aaa73 Merge. by Richard Oudkerk · 11 years ago
  8. b1694cf Issue #18999: Make multiprocessing use context objects. by Richard Oudkerk · 11 years ago
  9. 45e2551 Issue #18934: Use poll/select-based selectors for multiprocessing.Connection, by Charles-François Natali · 11 years ago
  10. e241ac9 Issue #18934: multiprocessing: use selectors module. by Charles-François Natali · 11 years ago
  11. 67973c0 Issue #18865: remove unused import from multiprocessing.util.spawnv_passfds() by Victor Stinner · 11 years ago
  12. 0d097b6 Issue #18865: PEP 446 makes multiprocessing.util.pipe() unnecessary. by Richard Oudkerk · 11 years ago
  13. daf4555 Issue #18571: Implementation of the PEP 446: file descriptors and file handles by Victor Stinner · 11 years ago
  14. 7d2d43c Stop making fork server have copy of semaphore_tracker_fd. by Richard Oudkerk · 11 years ago
  15. 0718f70 Issue #18762: Fix EBADF error when using forkserver. by Richard Oudkerk · 11 years ago
  16. a01fb39 Issue #18762: Print debug info on failure to create new forkserver process. by Richard Oudkerk · 11 years ago
  17. 30b9d5d #18705: fix a number of typos. Patch by Févry Thibault. by Ezio Melotti · 11 years ago
  18. 84ed9a6 Issue #8713: Support alternative start methods in multiprocessing on Unix. by Richard Oudkerk · 11 years ago
  19. 580373c Issue #18593: fix typo in comment by Eli Bendersky · 11 years ago
  20. 25f043b Issue #18593: fix typo in comment by Eli Bendersky · 11 years ago
  21. cd171c8 Issue #18200: Back out usage of ModuleNotFoundError (8d28d44f3a9a) by Brett Cannon · 11 years ago
  22. 1b6348e Issue #17261: Ensure multiprocessing's proxies use proper address. by Richard Oudkerk · 11 years ago
  23. e3e8bcf Issue #17261: Ensure multiprocessing's proxies use proper address. by Richard Oudkerk · 11 years ago
  24. 626032a Issue #17097: Merge. by Richard Oudkerk · 11 years ago
  25. cca8c53 Issue #17097: Make multiprocessing ignore EINTR. by Richard Oudkerk · 11 years ago
  26. 37cfb0a Issue #17914: Use os.cpu_count() instead of multiprocessing.cpu_count() where by Charles-François Natali · 11 years ago
  27. 4f4088e Issue #17177: Stop using imp in multiprocessing by Brett Cannon · 11 years ago
  28. 0a14066 Issue #18200: Update the stdlib (except tests) to use ModuleNotFoundError. by Brett Cannon · 11 years ago
  29. a33e11e Issue #17314: Stop using imp in multiprocessing.forking and move over by Brett Cannon · 11 years ago
  30. 44feda3 Issue #17914: Add os.cpu_count(). Patch by Yogesh Chaudhari, based on an by Charles-Francois Natali · 11 years ago
  31. 94fd53b - Fix typos in the multiprocessing module. by doko@ubuntu.com · 11 years ago
  32. 9df891c - Fix typos in the multiprocessing module. by doko@ubuntu.com · 11 years ago
  33. f3a0da2 Merge by Richard Oudkerk · 11 years ago
  34. def51ca Issue #17805: Add AsyncResult alias for ApplyResult by Richard Oudkerk · 11 years ago
  35. 8575783 Issue #13813: Embed stringification of remote traceback in local by Richard Oudkerk · 11 years ago
  36. b147f60 Issue #17555: Fix ForkAwareThreadLock so that size of after fork by Richard Oudkerk · 11 years ago
  37. 409c313 Issue #17555: Fix ForkAwareThreadLock so that size of after fork by Richard Oudkerk · 11 years ago
  38. 3083071 Fix issue #17707: multiprocessing.Queue's get() method does not block for short timeouts. by Giampaolo Rodola' · 11 years ago
  39. b38897f Fix issue #17707: multiprocessing.Queue's get() method does not block for short timeouts. by Giampaolo Rodola' · 11 years ago
  40. 84e4316 Issue #17025: multiprocessing: Reduce Queue and SimpleQueue contention. by Charles-François Natali · 11 years ago
  41. a655075 Issue #17025: Add dumps() and loads() to ForkingPickler. by Charles-François Natali · 11 years ago
  42. 0320025 Merge by Richard Oudkerk · 11 years ago
  43. 5b8a324 Merge by Richard Oudkerk · 11 years ago
  44. 7aaa1ef Issue #17018: Make Process.join() retry if os.waitpid() fails with EINTR. by Richard Oudkerk · 11 years ago
  45. 67da894 fix for previous commit related to issue 10527 which didn't have the intended effect as per http://bugs.python.org/issue10527#msg179895 by Giampaolo Rodola' · 12 years ago
  46. 0c8ad61 fix for previous commit related to issue 10527 which didn't have the intended effect as per http://bugs.python.org/issue10527#msg179895 by Giampaolo Rodola' · 12 years ago
  47. 0ee84e0 Issue #16955: Fix the poll() method for multiprocessing's socket by Richard Oudkerk · 12 years ago
  48. ed9e06c Issue #16955: Fix the poll() method for multiprocessing's socket by Richard Oudkerk · 12 years ago
  49. ef45380 Fix overlooked licence text. by Richard Oudkerk · 12 years ago
  50. b4f39e8 Fix issue 10527: make multiprocessing use poll() instead of select() if available. by Giampaolo Rodola' · 12 years ago
  51. 5051ca8 Fix issue 10527: make multiprocessing use poll() instead of select() if available. by Giampaolo Rodola' · 12 years ago
  52. 5e844c8 Fix issue 10527: make multiprocessing use poll() instead of select() if available. by Giampaolo Rodola' · 12 years ago
  53. f7a17b4 Replace IOError with OSError (#16715) by Andrew Svetlov · 12 years ago
  54. 2606a6f Issue #16719: Get rid of WindowsError. Use OSError instead by Andrew Svetlov · 12 years ago
  55. ad28c7f Issue #16706: get rid of os.error by Andrew Svetlov · 12 years ago
  56. a191959 Issue #16714: use 'raise' exceptions, don't 'throw'. by Andrew Svetlov · 12 years ago
  57. 5b89840 Issue #16714: use 'raise' exceptions, don't 'throw'. by Andrew Svetlov · 12 years ago
  58. 737fb89 Issue #16714: use 'raise' exceptions, don't 'throw'. by Andrew Svetlov · 12 years ago
  59. 8f7c4b8 Issue #16481: Merge by Richard Oudkerk · 12 years ago
  60. 021f4c2 Issue #16481: multiprocessing no longer leaks process handles on Windows. by Richard Oudkerk · 12 years ago
  61. 6b97374 Issue #16284: Prevent keeping unnecessary references to worker functions in concurrent.futures ThreadPoolExecutor. by Andrew Svetlov · 12 years ago
  62. 969684f Merge 3.3 by Hynek Schlawack · 12 years ago
  63. 254af26 #16307: Fix multiprocessing.Pool.map_async not calling its callbacks by Hynek Schlawack · 12 years ago
  64. 5046e97 Make __mp_main__ an alias for __main__ in all processes to simplify by Richard Oudkerk · 12 years ago
  65. 3095f47 raise a ValueError instead of an AssertionError when pool is an invalid state by Benjamin Peterson · 12 years ago
  66. e8cd6bb Issue #15881: Clarify comment in exit function by Richard Oudkerk · 12 years ago
  67. 5bedef3 Issue #15881: Fixed 3.2 backport. by Alexander Belopolsky · 12 years ago
  68. 7f704c1 Fixed whitespace by Alexander Belopolsky · 12 years ago
  69. 3635156 Fixed whitespace by Alexander Belopolsky · 12 years ago
  70. f36c49d Issue #15881: Fixed atexit hook in multiprocessing. by Alexander Belopolsky · 12 years ago
  71. 59fb38b Issue #15881: Fixed atexit hook in multiprocessing. by Alexander Belopolsky · 12 years ago
  72. 04ec8ce Issue #14669: Fix pickling of connections and sockets on MacOSX by Richard Oudkerk · 12 years ago
  73. 3165a75 Merge 3.2 by Richard Oudkerk · 12 years ago
  74. e88a244 Issue #15646: Prevent equivalent of a fork bomb when using multiprocessing by Richard Oudkerk · 12 years ago
  75. b303580 Issue #15525: Increase timeout when TerminateProcess() fails by Richard Oudkerk · 12 years ago
  76. b15e622 Issue #6056: Make multiprocessing use setblocking(True) on the sockets it uses. by Richard Oudkerk · 12 years ago
  77. 4887b1c Issue #6056: Make multiprocessing use setblocking(True) on the sockets it uses. by Richard Oudkerk · 12 years ago
  78. 8838061 Issue #10527: Remove dead code by Richard Oudkerk · 12 years ago
  79. 549d465 issue 10527: fix missing import by Giampaolo Rodola' · 12 years ago
  80. ac38571 Issue #15064: Make BaseManager.__enter__() start server if necessary. by Richard Oudkerk · 12 years ago
  81. d69cfe8 Issue #15064: Implement context manager protocol for multiprocessing types by Richard Oudkerk · 12 years ago
  82. 0f88427 Issue #15101: Make pool finalizer avoid joining current thread. by Richard Oudkerk · 12 years ago
  83. f29ec4b Issue #15101: Make pool finalizer avoid joining current thread. by Richard Oudkerk · 12 years ago
  84. 3049f12 Increase timeout used when waiting for manager to shutdown cleanly by Richard Oudkerk · 12 years ago
  85. 3730a17 Issue #14059: Implement multiprocessing.Barrier by Richard Oudkerk · 12 years ago
  86. 73d9a29 Issue #13841: Make child processes exit using sys.exit() on Windows by Richard Oudkerk · 12 years ago
  87. f0604fd Issue #3518: Remove references to non-existent BaseManager.from_address() method by Richard Oudkerk · 12 years ago
  88. 58ba47f Merge fixes for #13854 and #12157. by Richard Oudkerk · 12 years ago
  89. 29471de Issue #13854: Properly handle non-integer, non-string arg to SystemExit by Richard Oudkerk · 12 years ago
  90. e41682b Issue #12157: pool.map() does not handle empty iterable correctly by Richard Oudkerk · 12 years ago
  91. bd7b5dd Prevent handle leak if CreateProcess() fails in multiprocessing by Richard Oudkerk · 12 years ago
  92. 86eb7e9 Fix potential NameError in multiprocessing.Condition.wait() by Richard Oudkerk · 12 years ago
  93. ad06444 Make Finalize reserve a reference to os.getpid in case called at shutdown by Richard Oudkerk · 12 years ago
  94. 87ea780 Use Python 3.x-style keyword only arg in Array() by Richard Oudkerk · 12 years ago
  95. 1074a92 Remove __getslice__, __setslice__, __delslice__ methods from proxies by Richard Oudkerk · 12 years ago
  96. 26cdf1f Make multiprocessing's shared memory use memoryview instead of raw pointer by Richard Oudkerk · 12 years ago
  97. 739ae56 Issue #14548: Make multiprocessing finalizers check pid before running by Richard Oudkerk · 12 years ago
  98. 692130a Issue #12091: simplify ApplyResult and MapResult with threading.Event by Richard Oudkerk · 12 years ago
  99. be39cfc Merge by Richard Oudkerk · 12 years ago
  100. 54454e7 Issue #14881: Allow normal non-main thread to spawn a dummy process by Richard Oudkerk · 12 years ago