summaryrefslogtreecommitdiffstats
path: root/Lib/multiprocessing/forking.py
Commit message (Collapse)AuthorAgeFilesLines
* 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).
* Merged revisions 78777,78787,78790 via svnmerge fromFlorent Xicluna2010-03-081-1/+6
| | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r78777 | florent.xicluna | 2010-03-08 00:49:03 +0100 (lun, 08 mar 2010) | 4 lines Backport the Popen.poll() protection from subprocess to multiprocessing. See #1731717. It should fix transient failures on test_multiprocessing. ........ r78787 | florent.xicluna | 2010-03-08 08:21:16 +0100 (lun, 08 mar 2010) | 2 lines Don't fail on a debug() statement, if the worker PID is (still) None. ........ r78790 | florent.xicluna | 2010-03-08 12:01:39 +0100 (lun, 08 mar 2010) | 2 lines On finalize, don't try to join not started process. ........
* Issues #10867: remove old cPickle imports from multiprocessingJesse Noller2009-01-181-5/+1
|
* Issue #3125: Remove copy_reg in multiprocessing and replace it withAmaury Forgeot d'Arc2008-08-191-9/+54
| | | | ForkingPickler.register() to resolve conflict with ctypes.
* Merged revisions 65864 via svnmerge fromBenjamin Peterson2008-08-191-2/+2
| | | | | | | | | | 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 64104,64117 via svnmerge fromBenjamin Peterson2008-06-111-0/+429
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 ........