| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Issue #19936: Added executable bits or shebang lines to Python scripts which | Serhiy Storchaka | 2014-01-16 | 1 | -2/+0 |
| | | | | | | | requires them. Disable executable bits and shebang lines in test and benchmark files in order to prevent using a random system python, and in source files of modules which don't provide command line interface. | ||||
| * | Issue #19572: More silently skipped tests explicitly skipped. | Zachary Ware | 2013-12-10 | 1 | -7/+7 |
| | | |||||
| * | Issue #19599: Use a separate pool for test_terminate(). | Richard Oudkerk | 2013-11-21 | 1 | -12/+4 |
| | | |||||
| * | Issue #19599: Increase sleep period. | Richard Oudkerk | 2013-11-17 | 1 | -1/+1 |
| | | |||||
| * | Fix handling of SystemExit and exit code. Patch by Brodie Rao. | Richard Oudkerk | 2013-11-17 | 1 | -1/+1 |
| | | |||||
| * | Issue #19425 -- a pickling error should not cause pool to hang. | Richard Oudkerk | 2013-10-28 | 1 | -0/+10 |
| | | |||||
| * | Issue #19112: avoid using function defined in method. | Richard Oudkerk | 2013-09-29 | 1 | -8/+9 |
| | | |||||
| * | move helper function into its test method (closes #19112) | Benjamin Peterson | 2013-09-29 | 1 | -7/+6 |
| | | |||||
| * | Issue #18792: Use "127.0.0.1" or "::1" instead of "localhost" as much as ↵ | Antoine Pitrou | 2013-08-21 | 1 | -2/+2 |
| | | | | | possible, since "localhost" goes through a DNS lookup under recent Windows versions. | ||||
| * | Issue #17097: Make multiprocessing ignore EINTR. | Richard Oudkerk | 2013-07-01 | 1 | -1/+69 |
| | | |||||
| * | Issue #17555: Fix ForkAwareThreadLock so that size of after fork | Richard Oudkerk | 2013-04-17 | 1 | -1/+31 |
| | | | | | registry does not grow exponentially with generation of process. | ||||
| * | site.py is needed to set up paths | Benjamin Peterson | 2013-03-20 | 1 | -1/+1 |
| | | |||||
| * | Issue #12098: multiprocessing on Windows now starts child processes | Kristján Valur Jónsson | 2013-03-19 | 1 | -1/+33 |
| | | | | | | using the same sys.flags as the current process. Backport from default branch. | ||||
| * | Issue #17018: Make Process.join() retry if os.waitpid() fails with EINTR. | Richard Oudkerk | 2013-02-26 | 1 | -0/+32 |
| | | |||||
| * | Fix issue 10527: make multiprocessing use poll() instead of select() if ↵ | Giampaolo Rodola' | 2012-12-31 | 1 | -0/+1 |
| | | | | | available. | ||||
| * | Issue #15646: Prevent equivalent of a fork bomb when using multiprocessing | Richard Oudkerk | 2012-08-14 | 1 | -1/+22 |
| | | | | | on Windows without the "if __name__ == '__main__'" idiom. | ||||
| * | Issue #6056: Make multiprocessing use setblocking(True) on the sockets it uses. | Richard Oudkerk | 2012-07-27 | 1 | -1/+35 |
| | | | | | Original patch by J Derek Wilson. | ||||
| * | Issue #13854: Properly handle non-integer, non-string arg to SystemExit | Richard Oudkerk | 2012-06-06 | 1 | -0/+30 |
| | | | | | | Previously multiprocessing only expected int or str. It also wrongly used an exit code of 1 when the argument was a string instead of zero. | ||||
| * | Issue #12157: pool.map() does not handle empty iterable correctly | Richard Oudkerk | 2012-06-06 | 1 | -3/+15 |
| | | | | | Initial patch by mouad | ||||
| * | Fix for issue 14725 for 2.7 branch | Richard Oudkerk | 2012-05-05 | 1 | -0/+17 |
| | | |||||
| * | Issue #9400: Partial backport of fix for #9244 | Richard Oudkerk | 2012-05-02 | 1 | -0/+18 |
| | | | | | | | | | | | In multiprocessing, a pool worker process would die if the result/error could not be pickled. This could cause pool methods to hang. In 3.x this was fixed by 0aa8af79359d (which also added an error_callback argument to some methods), but the fix was not back ported. | ||||
| * | Issue #12156: Skip test_multiprocessing on systems which don't support enough | Charles-François Natali | 2011-11-22 | 1 | -0/+18 |
| | | | | | POSIX semaphores (among which FreeBSD < 8). | ||||
| * | Issue #10332: multiprocessing: fix a race condition when a Pool is closed | Charles-François Natali | 2011-10-24 | 1 | -0/+14 |
| | | | | | before all tasks have completed. | ||||
| * | Issue #12981: test_multiprocessing: catch ImportError when importing | Charles-François Natali | 2011-09-21 | 1 | -2/+13 |
| | | | | | | multiprocessing.reduction, which may not be available (e.g. if the OS doesn't support FD passing over Unix domain sockets). | ||||
| * | Close #13022: _multiprocessing.recvfd() doesn't check that file descriptor ↵ | Jesus Cea | 2011-09-21 | 1 | -0/+17 |
| | | | | | was actually received | ||||
| * | Fix issue #12948: multiprocessing test failures can hang the buildbots | Jesus Cea | 2011-09-09 | 1 | -2/+0 |
| | | |||||
| * | Close issue #12948: multiprocessing test failures can hang the buildbots | Jesus Cea | 2011-09-09 | 1 | -3/+27 |
| | | |||||
| * | Issue #11657: Fix sending file descriptors over 255 over a multiprocessing Pipe. | Antoine Pitrou | 2011-08-23 | 1 | -1/+82 |
| | | | | | Also added some tests. | ||||
| * | Issue #12352: In test_free_from_gc(), restore the GC thresholds even if the GC | Charles-François Natali | 2011-07-02 | 1 | -4/+3 |
| | | | | | wasn't enabled at first. | ||||
| * | Issue #12352: Fix a deadlock in multiprocessing.Heap when a block is freed by | Charles-François Natali | 2011-07-02 | 1 | -0/+25 |
| | | | | | the garbage collector while the Heap lock is held. | ||||
| * | Issue #12285: multiprocessing.Pool() raises a ValueError if the number of | Victor Stinner | 2011-06-20 | 1 | -0/+3 |
| | | | | | processes if negative or null. | ||||
| * | Issue #11766: increase countdown waiting for a pool of processes to start | Antoine Pitrou | 2011-04-06 | 1 | -1/+2 |
| | | | | | up. Hopefully fixes transient buildbot failures. | ||||
| * | Issue #11675: Zero-out newly-created multiprocessing.[Raw]Array objects. | Mark Dickinson | 2011-03-26 | 1 | -0/+15 |
| | | |||||
| * | Issue #11673: Fix multiprocessing.[Raw]Array constructor to accept a size of ↵ | Mark Dickinson | 2011-03-25 | 1 | -0/+7 |
| | | | | | type long. Thanks Robert Kern. | ||||
| * | #11565: Fix several typos. Patch by Piotr Kasprzyk. | Ezio Melotti | 2011-03-16 | 1 | -3/+3 |
| | | |||||
| * | Merged revisions 86694 via svnmerge from | Antoine Pitrou | 2010-11-22 | 1 | -4/+8 |
| | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r86694 | antoine.pitrou | 2010-11-22 17:26:21 +0100 (lun., 22 nov. 2010) | 3 lines Fix test_multiprocessing when ctypes isn't available ........ | ||||
| * | Merged revisions 86596 via svnmerge from | Ezio Melotti | 2010-11-21 | 1 | -12/+12 |
| | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r86596 | ezio.melotti | 2010-11-20 21:04:17 +0200 (Sat, 20 Nov 2010) | 1 line #9424: Replace deprecated assert* methods in the Python test suite. ........ | ||||
| * | Merged revisions 86130 via svnmerge from | Antoine Pitrou | 2010-11-02 | 1 | -24/+49 |
| | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r86130 | antoine.pitrou | 2010-11-03 00:50:11 +0100 (mer., 03 nov. 2010) | 3 lines Issue #10173: test_multiprocessing shouldn't pickle TestCase instances ........ | ||||
| * | Merged revisions 86077 via svnmerge from | Brian Curtin | 2010-11-01 | 1 | -1/+5 |
| | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r86077 | brian.curtin | 2010-11-01 00:10:44 -0500 (Mon, 01 Nov 2010) | 3 lines Fix some ResourceErrors. Use a context manager for os.popen and explicitly close a socket. ........ | ||||
| * | Merged revisions 85299 via svnmerge from | Brian Curtin | 2010-10-07 | 1 | -18/+12 |
| | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r85299 | brian.curtin | 2010-10-06 20:12:19 -0500 (Wed, 06 Oct 2010) | 9 lines Fix #8584. Fix the skipping of a number of tests due to incorrect importing. This undoes a previous attempt to fix some of the skips. Value and copy come from sharedctypes rather than plain ctypes, and the test skipping is then done at the class level rather than test-by-test. There are zero skipped tests after the fix. ........ | ||||
| * | Issue #8576: Remove use of find_unused_port() in test_smtplib and | Antoine Pitrou | 2010-04-30 | 1 | -3/+3 |
| | | | | | test_multiprocessing. Patch by Paul Moore. | ||||
| * | Issue #7449, part 4: skip test_multiprocessing if thread support is disabled | Victor Stinner | 2010-04-27 | 1 | -3/+4 |
| | | | | | | | import threading after _multiprocessing to raise a more revelant error message: "No module named _multiprocessing". _multiprocessing is not compiled without thread support. | ||||
| * | Fix typo in comment | Nick Coghlan | 2010-04-10 | 1 | -1/+1 |
| | | |||||
| * | Try to turn some buildbots green by allowing test_multiprocessing to pass ↵ | Nick Coghlan | 2010-04-10 | 1 | -6/+22 |
| | | | | | even if it hits the sys.exc_clear code in the threading module, and improve the test coverage by making the ctypes dependencies a bit more granular (two of the cited ctypes objects don't exist on my system) | ||||
| * | Skip tests which depend on multiprocessing.sharedctypes, if _ctypes is not ↵ | Florent Xicluna | 2010-03-24 | 1 | -31/+33 |
| | | | | | available. | ||||
| * | #7092 - Silence more py3k deprecation warnings, using ↵ | Florent Xicluna | 2010-03-21 | 1 | -1/+3 |
| | | | | | test_support.check_py3k_warnings() helper. | ||||
| * | #7805: wait until all workers are started before collecting their PIDs | Florent Xicluna | 2010-03-04 | 1 | -1/+9 |
| | | |||||
| * | Fix import/access for some identifiers. _TestSharedCTypes does not seem to ↵ | Georg Brandl | 2010-02-06 | 1 | -3/+3 |
| | | | | | be executed? | ||||
| * | Issue #6963: Added maxtasksperchild argument to multiprocessing.Pool | Jesse Noller | 2010-01-27 | 1 | -1/+25 |
| | | |||||
| * | use assert[Not]IsInstance where appropriate | Ezio Melotti | 2010-01-24 | 1 | -1/+1 |
| | | |||||
