1. fc7b0ec Use setUpClass() and tearDownClass() in test_multiprocessing. by Richard Oudkerk · 12 years ago
  2. 3095f47 raise a ValueError instead of an AssertionError when pool is an invalid state by Benjamin Peterson · 12 years ago
  3. 04ec8ce Issue #14669: Fix pickling of connections and sockets on MacOSX by Richard Oudkerk · 12 years ago
  4. 3165a75 Merge 3.2 by Richard Oudkerk · 12 years ago
  5. e88a244 Issue #15646: Prevent equivalent of a fork bomb when using multiprocessing by Richard Oudkerk · 12 years ago
  6. b15e622 Issue #6056: Make multiprocessing use setblocking(True) on the sockets it uses. by Richard Oudkerk · 12 years ago
  7. 4887b1c Issue #6056: Make multiprocessing use setblocking(True) on the sockets it uses. by Richard Oudkerk · 12 years ago
  8. ac38571 Issue #15064: Make BaseManager.__enter__() start server if necessary. by Richard Oudkerk · 12 years ago
  9. d69cfe8 Issue #15064: Implement context manager protocol for multiprocessing types by Richard Oudkerk · 12 years ago
  10. 1375884 Fiddle with timeouts in barrier tests by Richard Oudkerk · 12 years ago
  11. 9125775 Fix _TestListener.ALLOWED_TYPES and add sanity check by Richard Oudkerk · 12 years ago
  12. 3049f12 Increase timeout used when waiting for manager to shutdown cleanly by Richard Oudkerk · 12 years ago
  13. 0f52346 Fix for 2d2f206d040e so that test_multiprocessing does not depend on ctypes by Richard Oudkerk · 12 years ago
  14. 3730a17 Issue #14059: Implement multiprocessing.Barrier by Richard Oudkerk · 12 years ago
  15. 73d9a29 Issue #13841: Make child processes exit using sys.exit() on Windows by Richard Oudkerk · 12 years ago
  16. 58ba47f Merge fixes for #13854 and #12157. by Richard Oudkerk · 12 years ago
  17. 29471de Issue #13854: Properly handle non-integer, non-string arg to SystemExit by Richard Oudkerk · 12 years ago
  18. e41682b Issue #12157: pool.map() does not handle empty iterable correctly by Richard Oudkerk · 12 years ago
  19. 9844993 Add test for multiprocessing.Conditon.wait() and changset 3baeb5e13dd2 by Richard Oudkerk · 12 years ago
  20. 77c84f2 #12098: Make multiprocessing's child processes inherit sys.flags on Windows by Richard Oudkerk · 12 years ago
  21. 59d5404 Issue #14753: Make multiprocessing treat negative timeouts as it did in 3.2 by Richard Oudkerk · 12 years ago
  22. 5d73c17 Issue #14727: Fix race in test_multiprocessing by Richard Oudkerk · 12 years ago
  23. 104b3f4 Minor fix for test_multiprocessing by Richard Oudkerk · 12 years ago
  24. 6dbca36 Make test_multiprocessing more lenient about another timeout check by Richard Oudkerk · 12 years ago
  25. 7ef909c Fix for issue 14725 for 3.2 branch by Richard Oudkerk · 12 years ago
  26. fdb8dcf Fix for Issue 14725 for 3.3 branch. by Richard Oudkerk · 12 years ago
  27. 009b15e Give test_multiprocessing better chance of avoiding timeout failures on Windows by Richard Oudkerk · 12 years ago
  28. a6becaa Fix dangling warning for test_multiprocessing by Richard Oudkerk · 12 years ago
  29. 225cb8d Make test_multiprocessing cleanup properly by Richard Oudkerk · 12 years ago
  30. 2452419 Issue #14669: Skip multiprocessing connection pickling test on MacOSX by Richard Oudkerk · 12 years ago
  31. 4460c34 Minor fix for multiprocessing unit test by Richard Oudkerk · 12 years ago
  32. 92ff4e1 Issue #14666: stop multiprocessing's resource-sharing thread after the tests are done. by Antoine Pitrou · 12 years ago
  33. 5438ed1 Issue #4892: multiprocessing Connections can now be transferred over multiprocessing Connections. by Antoine Pitrou · 12 years ago
  34. 23bba4c Issue #11750: The Windows API functions scattered in the _subprocess and 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. 5c73e8e Issue #14482: Raise a ValueError, not a NameError, when trying to create by Antoine Pitrou · 12 years ago
  37. 6d20cba Issue #14482: Raise a ValueError, not a NameError, when trying to create by Antoine Pitrou · 12 years ago
  38. 93bba8f Issue #14151: Raise a ValueError, not a NameError, when trying to create by Antoine Pitrou · 12 years ago
  39. 709176f Issue #14151: Raise a ValueError, not a NameError, when trying to create by Antoine Pitrou · 12 years ago
  40. 3774977 Relax timeout tests for weak Windows buildbot by Antoine Pitrou · 12 years ago
  41. 5bb9a8f Remove a couple of local imports. by Antoine Pitrou · 12 years ago
  42. 6c64cc1 Reap processes at test end to avoid false positives in reference leak detection. by Antoine Pitrou · 12 years ago
  43. bdb1cf1 Issue #12328: Fix multiprocessing's use of overlapped I/O on Windows. by Antoine Pitrou · 12 years ago
  44. ed4a8fc Issue #8184: multiprocessing: On Windows, don't set SO_REUSEADDR on Connection by Charles-François Natali · 13 years ago
  45. 2d843d2 Issue #13812: When a multiprocessing Process child raises an exception, flush stderr after printing the exception traceback. by Antoine Pitrou · 13 years ago
  46. 84a0fbf Issue #13812: When a multiprocessing Process child raises an exception, flush stderr after printing the exception traceback. by Antoine Pitrou · 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. 221ef67 Issue #12156: Skip test_multiprocessing on systems which don't support enough by Charles-François Natali · 13 years ago
  49. feeb3a3 Issue #10332: multiprocessing: fix a race condition when a Pool is closed by Charles-François Natali · 13 years ago
  50. f8859e1 Issue #10332: multiprocessing: fix a race condition when a Pool is closed by Charles-François Natali · 13 years ago
  51. fba2b6b Issue #12981: test_multiprocessing: catch ImportError when importing by Charles-François Natali · 13 years ago
  52. e51c8da Issue #12981: test_multiprocessing: catch ImportError when importing by Charles-François Natali · 13 years ago
  53. 41c98a3 Close #13022: _multiprocessing.recvfd() doesn't check that file descriptor was actually received by Jesus Cea · 13 years ago
  54. 4507e64 Close #13022: _multiprocessing.recvfd() doesn't check that file descriptor was actually received by Jesus Cea · 13 years ago
  55. 4ad6ed7 Merge 3.2: test_multiprocessing removes temporary files by Victor Stinner · 13 years ago
  56. d0b10a6 test_multiprocessing removes temporary files by Victor Stinner · 13 years ago
  57. bc8f082 Issue #12981: test_multiprocessing: catch ImportError when importing by Charles-François Natali · 13 years ago
  58. 1e1c8f4 Fix issue #12948: multiprocessing test failures can hang the buildbots by Jesus Cea · 13 years ago
  59. da752d8 Fix issue #12948: multiprocessing test failures can hang the buildbots by Jesus Cea · 13 years ago
  60. 440b383 Close issue #12948: multiprocessing test failures can hang the buildbots by Jesus Cea · 13 years ago
  61. 94f964f Close issue #12948: multiprocessing test failures can hang the buildbots by Jesus Cea · 13 years ago
  62. 162fee1 Issue #11657: Fix sending file descriptors over 255 over a multiprocessing Pipe. by Antoine Pitrou · 13 years ago
  63. bcb39d4 Issue #11657: Fix sending file descriptors over 255 over a multiprocessing Pipe. by Antoine Pitrou · 13 years ago
  64. 3be0095 Issue #12156: Skip test_multiprocessing on systems which don't support enough by Charles-François Natali · 13 years ago
  65. 723585b Merge issue #12352: Fix a deadlock in multiprocessing.Heap when a block is by Charles-François Natali · 13 years ago
  66. a4a0406 Merge issue #12352: Fix a deadlock in multiprocessing.Heap when a block is by Charles-François Natali · 13 years ago
  67. 778db49 Issue #12352: Fix a deadlock in multiprocessing.Heap when a block is freed by by Charles-François Natali · 13 years ago
  68. 395dc58 (merge 3.2) Issue #12285: multiprocessing.Pool() raises a ValueError if the by Victor Stinner · 13 years ago
  69. 2fae27b Issue #12285: multiprocessing.Pool() raises a ValueError if the number of by Victor Stinner · 13 years ago
  70. 176f07d Issue #12040: Expose a new attribute `sentinel` on instances of by Antoine Pitrou · 13 years ago
  71. 87cf220 Issue #11743: Rewrite multiprocessing connection classes in pure Python. by Antoine Pitrou · 13 years ago
  72. cf645db Issue #11790: Fix sporadic failures in test_multiprocessing.WithProcessesTestCondition. by Antoine Pitrou · 13 years ago
  73. f25a8de Issue #11790: Fix sporadic failures in test_multiprocessing.WithProcessesTestCondition. by Antoine Pitrou · 13 years ago
  74. efbcb18 Issue #11766: increase countdown waiting for a pool of processes to start by Antoine Pitrou · 13 years ago
  75. 540ab06 Issue #11766: increase countdown waiting for a pool of processes to start by Antoine Pitrou · 13 years ago
  76. e21a596 Try to fix sporadic test_multiprocessing failure by Antoine Pitrou · 13 years ago
  77. 04026cf Try to fix sporadic test_multiprocessing failure by Antoine Pitrou · 13 years ago
  78. c824e9a Try to fix sporadic test_multiprocessing failure by Antoine Pitrou · 13 years ago
  79. 657bd0a Merge #11675 by Mark Dickinson · 13 years ago
  80. 633872e Merge #11675 by Mark Dickinson · 13 years ago
  81. 89461ef Issue #11675: Zero-out newly-created multiprocessing.[Raw]Array objects. by Mark Dickinson · 13 years ago
  82. f09e652 Merge 3.2 by Victor Stinner · 13 years ago
  83. 900189b Merge 3.1 by Victor Stinner · 13 years ago
  84. 29943aa test_multiprocessing: use assertLess() to see the timeout on error by Victor Stinner · 13 years ago
  85. 732110a Relax timing check (seen a buildbot failure on this) by Antoine Pitrou · 13 years ago
  86. 60bf7e9 Relax timing check (seen a buildbot failure on this) by Antoine Pitrou · 13 years ago
  87. 3b3499b #11565: Merge with 3.1. by Ezio Melotti · 13 years ago
  88. 1392500 #11565: Fix several typos. Patch by Piotr Kasprzyk. by Ezio Melotti · 13 years ago
  89. b88ed15 #11565: Merge with 3.2. by Ezio Melotti · 13 years ago
  90. ec78522 assertEquals is deprecated by Antoine Pitrou · 13 years ago
  91. 0bd4deb Issue #6064: Add a `daemon` keyword argument to the threading.Thread by Antoine Pitrou · 13 years ago
  92. 72d5a9d Merged revisions 86694 via svnmerge from by Antoine Pitrou · 14 years ago
  93. 7744e2a Fix test_multiprocessing when ctypes isn't available by Antoine Pitrou · 14 years ago
  94. 19f2aeb Merged revisions 86596 via svnmerge from by Ezio Melotti · 14 years ago
  95. b3aedd4 #9424: Replace deprecated assert* methods in the Python test suite. by Ezio Melotti · 14 years ago
  96. 2afcbf2 Issue #9244: multiprocessing.pool: Worker crashes if result can't be encoded by Ask Solem · 14 years ago
  97. 26899f4 Merged revisions 86130 via svnmerge from by Antoine Pitrou · 14 years ago
  98. 0d1b38c Issue #10173: test_multiprocessing shouldn't pickle TestCase instances by Antoine Pitrou · 14 years ago
  99. 9e2fadc Merged revisions 86077 via svnmerge from by Brian Curtin · 14 years ago
  100. 50be1ca Fix some ResourceErrors. by Brian Curtin · 14 years ago