summaryrefslogtreecommitdiffstats
path: root/Lib/multiprocessing/util.py
Commit message (Collapse)AuthorAgeFilesLines
* Remove unused or redundant imports in concurrent.futures and multiprocessing.Florent Xicluna2011-11-111-2/+1
|
* Use InterruptedError instead of checking for EINTRAntoine Pitrou2011-10-231-6/+3
|
* Rebind locally the globals which can be looked up at shutdownAntoine Pitrou2011-07-081-1/+5
| | | | (to avoid the warnings seen on a buildbot)
* Whitespace normalizationAntoine Pitrou2011-06-061-1/+0
|
* Issue #12040: Expose a new attribute `sentinel` on instances ofAntoine Pitrou2011-06-061-0/+21
| | | | | :class:`multiprocessing.Process`. Also, fix Process.join() to not use polling anymore, when given a timeout.
* 9162: fix license in multiprocessing filesR. David Murray2010-12-141-1/+27
|
* merge r68915 to py3kJesse Noller2009-01-251-12/+24
|
* merge cl r68737 to py3kJesse Noller2009-01-181-24/+0
|
* Issue #3125: Remove copy_reg in multiprocessing and replace it withAmaury Forgeot d'Arc2008-08-191-33/+0
| | | | 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/+336
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 ........