1. 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
  2. ed9e06c Issue #16955: Fix the poll() method for multiprocessing's socket by Richard Oudkerk · 12 years ago
  3. 5051ca8 Fix issue 10527: make multiprocessing use poll() instead of select() if available. by Giampaolo Rodola' · 12 years ago
  4. 5e844c8 Fix issue 10527: make multiprocessing use poll() instead of select() if available. by Giampaolo Rodola' · 12 years ago
  5. 5b89840 Issue #16714: use 'raise' exceptions, don't 'throw'. by Andrew Svetlov · 12 years ago
  6. 737fb89 Issue #16714: use 'raise' exceptions, don't 'throw'. by Andrew Svetlov · 12 years ago
  7. 021f4c2 Issue #16481: multiprocessing no longer leaks process handles on Windows. by Richard Oudkerk · 12 years ago
  8. 254af26 #16307: Fix multiprocessing.Pool.map_async not calling its callbacks by Hynek Schlawack · 12 years ago
  9. 3095f47 raise a ValueError instead of an AssertionError when pool is an invalid state by Benjamin Peterson · 12 years ago
  10. e8cd6bb Issue #15881: Clarify comment in exit function by Richard Oudkerk · 12 years ago
  11. 5bedef3 Issue #15881: Fixed 3.2 backport. by Alexander Belopolsky · 12 years ago
  12. 7f704c1 Fixed whitespace by Alexander Belopolsky · 12 years ago
  13. 3635156 Fixed whitespace by Alexander Belopolsky · 12 years ago
  14. f36c49d Issue #15881: Fixed atexit hook in multiprocessing. by Alexander Belopolsky · 12 years ago
  15. 59fb38b Issue #15881: Fixed atexit hook in multiprocessing. by Alexander Belopolsky · 12 years ago
  16. 04ec8ce Issue #14669: Fix pickling of connections and sockets on MacOSX by Richard Oudkerk · 12 years ago
  17. 3165a75 Merge 3.2 by Richard Oudkerk · 12 years ago
  18. e88a244 Issue #15646: Prevent equivalent of a fork bomb when using multiprocessing by Richard Oudkerk · 12 years ago
  19. b303580 Issue #15525: Increase timeout when TerminateProcess() fails by Richard Oudkerk · 12 years ago
  20. b15e622 Issue #6056: Make multiprocessing use setblocking(True) on the sockets it uses. by Richard Oudkerk · 12 years ago
  21. 4887b1c Issue #6056: Make multiprocessing use setblocking(True) on the sockets it uses. by Richard Oudkerk · 12 years ago
  22. ac38571 Issue #15064: Make BaseManager.__enter__() start server if necessary. by Richard Oudkerk · 12 years ago
  23. d69cfe8 Issue #15064: Implement context manager protocol for multiprocessing types by Richard Oudkerk · 12 years ago
  24. 0f88427 Issue #15101: Make pool finalizer avoid joining current thread. by Richard Oudkerk · 12 years ago
  25. f29ec4b Issue #15101: Make pool finalizer avoid joining current thread. by Richard Oudkerk · 12 years ago
  26. 3049f12 Increase timeout used when waiting for manager to shutdown cleanly by Richard Oudkerk · 12 years ago
  27. 3730a17 Issue #14059: Implement multiprocessing.Barrier by Richard Oudkerk · 12 years ago
  28. 73d9a29 Issue #13841: Make child processes exit using sys.exit() on Windows by Richard Oudkerk · 12 years ago
  29. f0604fd Issue #3518: Remove references to non-existent BaseManager.from_address() method by Richard Oudkerk · 12 years ago
  30. 58ba47f Merge fixes for #13854 and #12157. by Richard Oudkerk · 12 years ago
  31. 29471de Issue #13854: Properly handle non-integer, non-string arg to SystemExit by Richard Oudkerk · 12 years ago
  32. e41682b Issue #12157: pool.map() does not handle empty iterable correctly by Richard Oudkerk · 12 years ago
  33. bd7b5dd Prevent handle leak if CreateProcess() fails in multiprocessing by Richard Oudkerk · 12 years ago
  34. 86eb7e9 Fix potential NameError in multiprocessing.Condition.wait() by Richard Oudkerk · 12 years ago
  35. ad06444 Make Finalize reserve a reference to os.getpid in case called at shutdown by Richard Oudkerk · 12 years ago
  36. 87ea780 Use Python 3.x-style keyword only arg in Array() by Richard Oudkerk · 12 years ago
  37. 1074a92 Remove __getslice__, __setslice__, __delslice__ methods from proxies by Richard Oudkerk · 12 years ago
  38. 26cdf1f Make multiprocessing's shared memory use memoryview instead of raw pointer by Richard Oudkerk · 12 years ago
  39. 739ae56 Issue #14548: Make multiprocessing finalizers check pid before running by Richard Oudkerk · 12 years ago
  40. 692130a Issue #12091: simplify ApplyResult and MapResult with threading.Event by Richard Oudkerk · 12 years ago
  41. be39cfc Merge by Richard Oudkerk · 12 years ago
  42. 54454e7 Issue #14881: Allow normal non-main thread to spawn a dummy process by Richard Oudkerk · 12 years ago
  43. fa67aa0 Fix whitespace by Antoine Pitrou · 12 years ago
  44. ebdcd85 Move private function _args_from_interpreter_flags() to subprocess.py, so by Antoine Pitrou · 12 years ago
  45. 77c84f2 #12098: Make multiprocessing's child processes inherit sys.flags on Windows by Richard Oudkerk · 12 years ago
  46. 59d5404 Issue #14753: Make multiprocessing treat negative timeouts as it did in 3.2 by Richard Oudkerk · 12 years ago
  47. 41eb85b Make AcquirerProxy.acquire() support timeout argument by Richard Oudkerk · 12 years ago
  48. 7ef909c Fix for issue 14725 for 3.2 branch by Richard Oudkerk · 12 years ago
  49. fdb8dcf Fix for Issue 14725 for 3.3 branch. by Richard Oudkerk · 12 years ago
  50. a6becaa Fix dangling warning for test_multiprocessing by Richard Oudkerk · 12 years ago
  51. 3e268aa Mark multiprocessing files with "Licensed to PSF under a Contributor Agreement" by Richard Oudkerk · 12 years ago
  52. 92ff4e1 Issue #14666: stop multiprocessing's resource-sharing thread after the tests are done. by Antoine Pitrou · 12 years ago
  53. 5438ed1 Issue #4892: multiprocessing Connections can now be transferred over multiprocessing Connections. by Antoine Pitrou · 12 years ago
  54. 23bba4c Issue #11750: The Windows API functions scattered in the _subprocess and by Antoine Pitrou · 12 years ago
  55. c8ce715 Issue #14087: multiprocessing: add Condition.wait_for(). Patch by sbt. by Charles-François Natali · 12 years ago
  56. df97cbe Issue #14522: Avoid duplicating socket handles in multiprocessing.connection. by Antoine Pitrou · 12 years ago
  57. 5c73e8e Issue #14482: Raise a ValueError, not a NameError, when trying to create by Antoine Pitrou · 12 years ago
  58. 6d20cba Issue #14482: Raise a ValueError, not a NameError, when trying to create by Antoine Pitrou · 12 years ago
  59. 93bba8f Issue #14151: Raise a ValueError, not a NameError, when trying to create by Antoine Pitrou · 12 years ago
  60. 709176f Issue #14151: Raise a ValueError, not a NameError, when trying to create by Antoine Pitrou · 12 years ago
  61. 846fd30 Issue #14335: multiprocessing's custom Pickler subclass now inherits from the C-accelerated implementation. by Antoine Pitrou · 13 years ago
  62. bdb1cf1 Issue #12328: Fix multiprocessing's use of overlapped I/O on Windows. by Antoine Pitrou · 13 years ago
  63. cd77815 Issue #11836: document and expose multiprocessing.SimpleQueue by Sandro Tosi · 13 years ago
  64. ed4a8fc Issue #8184: multiprocessing: On Windows, don't set SO_REUSEADDR on Connection by Charles-François Natali · 13 years ago
  65. edc67fe Issue #8184: Fix a potential file descriptor leak when a by Charles-François Natali · 13 years ago
  66. 992ca52 Issue #8184: Fix a potential file descriptor leak when a by Charles-François Natali · 13 years ago
  67. 2d843d2 Issue #13812: When a multiprocessing Process child raises an exception, flush stderr after printing the exception traceback. by Antoine Pitrou · 13 years ago
  68. 84a0fbf Issue #13812: When a multiprocessing Process child raises an exception, flush stderr after printing the exception traceback. by Antoine Pitrou · 13 years ago
  69. fe8039b Issue #13565: Increase multiprocessing's server socket backlog, to avoid by Charles-François Natali · 13 years ago
  70. 78c1b42 Issue #13565: Increase multiprocessing's server socket backlog, to avoid by Charles-François Natali · 13 years ago
  71. de911b2 Issue #12708: Add starmap() and starmap_async() methods (similar to itertools.starmap()) to multiprocessing.Pool. by Antoine Pitrou · 13 years ago
  72. e6eabd4 Issue #13215: multiprocessing.Connection: don't hammer the remote end with by Charles-François Natali · 13 years ago
  73. 04842a8 Remove unused or redundant imports in concurrent.futures and multiprocessing. by Florent Xicluna · 13 years ago
  74. 0215724 Issue #13373: multiprocessing.Queue.get() could sometimes block indefinitely by Antoine Pitrou · 13 years ago
  75. a365113 Issue #13373: multiprocessing.Queue.get() could sometimes block indefinitely by Antoine Pitrou · 13 years ago
  76. 5d1155c Closes #13258: Use callable() built-in in the standard library. by Florent Xicluna · 13 years ago
  77. f8859e1 Issue #10332: multiprocessing: fix a race condition when a Pool is closed by Charles-François Natali · 13 years ago
  78. e130a52 Remove duplication. by Ezio Melotti · 13 years ago
  79. aabbda5 Merge 3.2 by Florent Xicluna · 13 years ago
  80. feeb3a3 Issue #10332: multiprocessing: fix a race condition when a Pool is closed by Charles-François Natali · 13 years ago
  81. 24d659d Use InterruptedError instead of checking for EINTR by Antoine Pitrou · 13 years ago
  82. f106449 Merge with 3.2. by Ezio Melotti · 13 years ago
  83. 6b4883d PEP 3151 / issue #12555: reworking the OS and IO exception hierarchy. by Antoine Pitrou · 13 years ago
  84. dc863dd Issue #12981: rewrite multiprocessing_{sendfd,recvfd} in Python. by Charles-François Natali · 13 years ago
  85. 225aa4f Issue #12996: multiprocessing.connection: transmit the header in network byte by Charles-François Natali · 13 years ago
  86. 0cdd445 Remove indirection in threading (issue #10968). by Éric Araujo · 13 years ago
  87. fb96089 Fix test_multiprocessing failure under Windows. (followup to dfaa3a149a92) by Antoine Pitrou · 13 years ago
  88. dc19c24 Silence spurious "broken pipe" tracebacks when shutting down a ProcessPoolExecutor. by Antoine Pitrou · 13 years ago
  89. 428bc6c Issue #12573: Add resource checks for dangling Thread and Process objects. by Antoine Pitrou · 13 years ago
  90. c081c0c Issue #12573: Add resource checks for dangling Thread and Process objects. by Antoine Pitrou · 13 years ago
  91. 6000120 Add comment by Antoine Pitrou · 13 years ago
  92. 71a28a9 Rebind locally the globals which can be looked up at shutdown by Antoine Pitrou · 13 years ago
  93. 723585b Merge issue #12352: Fix a deadlock in multiprocessing.Heap when a block is by Charles-François Natali · 13 years ago
  94. a4a0406 Merge issue #12352: Fix a deadlock in multiprocessing.Heap when a block is by Charles-François Natali · 13 years ago
  95. 778db49 Issue #12352: Fix a deadlock in multiprocessing.Heap when a block is freed by by Charles-François Natali · 13 years ago
  96. 395dc58 (merge 3.2) Issue #12285: multiprocessing.Pool() raises a ValueError if the by Victor Stinner · 13 years ago
  97. 2fae27b Issue #12285: multiprocessing.Pool() raises a ValueError if the number of by Victor Stinner · 13 years ago
  98. 3bcc017 (Merge 3.2) Issue #12310: finalize the old process after _run_after_forkers() by Victor Stinner · 13 years ago
  99. 0f83b15 Issue #12310: finalize the old process after _run_after_forkers() by Victor Stinner · 13 years ago
  100. dd69649 Issue #9205: concurrent.futures.ProcessPoolExecutor now detects killed by Antoine Pitrou · 13 years ago