summaryrefslogtreecommitdiffstats
path: root/Lib/multiprocessing/reduction.py
Commit message (Collapse)AuthorAgeFilesLines
* Issue #20976: pyflakes: Remove unused importsVictor Stinner2014-03-201-1/+0
|
* Issue #18999: Make multiprocessing use context objects.Richard Oudkerk2013-10-161-2/+2
| | | | | This allows different parts of a program to use different methods for starting processes without interfering with each other.
* Issue #8713: Support alternative start methods in multiprocessing on Unix.Richard Oudkerk2013-08-141-201/+162
| | | | See http://hg.python.org/sandbox/sbt#spawn
* Issue #14669: Fix pickling of connections and sockets on MacOSXRichard Oudkerk2012-08-161-0/+8
| | | | | by sending/receiving an acknowledgment after file descriptor transfer. TestPicklingConnection has been reenabled for MacOSX.
* Mark multiprocessing files with "Licensed to PSF under a Contributor Agreement"Richard Oudkerk2012-04-301-26/+1
| | | | instead of BSD licence.
* Issue #14666: stop multiprocessing's resource-sharing thread after the tests ↵Antoine Pitrou2012-04-271-1/+28
| | | | | | | | are done. Also, block delivery of signals to that thread. Patch by Richard Oudkerk. This will hopefully fix sporadic freezes on the FreeBSD 9.0 buildbot.
* Issue #4892: multiprocessing Connections can now be transferred over ↵Antoine Pitrou2012-04-241-137/+178
| | | | | | multiprocessing Connections. Patch by Richard Oudkerk (sbt).
* Issue #11750: The Windows API functions scattered in the _subprocess andAntoine Pitrou2012-04-181-3/+3
| | | | | _multiprocessing.win32 modules now live in a single module "_winapi". Patch by sbt.
* Remove unused or redundant imports in concurrent.futures and multiprocessing.Florent Xicluna2011-11-111-2/+0
|
* Issue #12981: rewrite multiprocessing_{sendfd,recvfd} in Python.Charles-François Natali2011-09-241-3/+18
|
* Issue #11743: Rewrite multiprocessing connection classes in pure Python.Antoine Pitrou2011-05-091-6/+7
|
* 9162: fix license in multiprocessing filesR. David Murray2010-12-141-1/+27
|
* Fix #9513 to remove relative imports from multiprocessing.Brian Curtin2010-08-041-1/+1
| | | | | | | The test suite currently skips test_multiprocessing on Windows because it fails on finding _multiprocessing in several win32-specific blocks. Removing the relative import lets this through and allows the test to run (and pass).
* Issue #3125: Remove copy_reg in multiprocessing and replace it withAmaury Forgeot d'Arc2008-08-191-8/+7
| | | | ForkingPickler.register() to resolve conflict with ctypes.
* Merged revisions 65864 via svnmerge fromBenjamin Peterson2008-08-191-3/+3
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r65864 | jesse.noller | 2008-08-19 14:06:19 -0500 (Tue, 19 Aug 2008) | 2 lines issue3352: clean up the multiprocessing API to remove many get_/set_ methods and convert them to properties. Update the docs and the examples included. ........
* Merged revisions 64125 via svnmerge fromBenjamin Peterson2008-06-111-1/+1
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r64125 | benjamin.peterson | 2008-06-11 12:27:50 -0500 (Wed, 11 Jun 2008) | 2 lines give the threading API PEP 8 names ........
* Merged revisions 64104,64117 via svnmerge fromBenjamin Peterson2008-06-111-0/+190
svn+ssh://pythondev@svn.python.org/python/trunk ........ r64104 | benjamin.peterson | 2008-06-10 21:40:25 -0500 (Tue, 10 Jun 2008) | 2 lines add the multiprocessing package to fulfill PEP 371 ........ r64117 | benjamin.peterson | 2008-06-11 07:26:31 -0500 (Wed, 11 Jun 2008) | 2 lines fix import of multiprocessing by juggling imports ........