summaryrefslogtreecommitdiffstats
path: root/Lib/multiprocessing/dummy
Commit message (Collapse)AuthorAgeFilesLines
* Issue #8713: Support alternative start methods in multiprocessing on Unix.Richard Oudkerk2013-08-141-2/+2
| | | | See http://hg.python.org/sandbox/sbt#spawn
* Fix overlooked licence text.Richard Oudkerk2013-01-012-52/+2
|
* Issue #15064: Implement context manager protocol for multiprocessing typesRichard Oudkerk2012-06-181-0/+12
|
* Issue #14059: Implement multiprocessing.BarrierRichard Oudkerk2012-06-151-2/+2
|
* MergeRichard Oudkerk2012-05-251-1/+2
|\
| * Issue #14881: Allow normal non-main thread to spawn a dummy processRichard Oudkerk2012-05-251-1/+2
| | | | | | | | Fix suggested by Itay Brandes
* | Remove unused or redundant imports in concurrent.futures and multiprocessing.Florent Xicluna2011-11-111-2/+0
| |
* | Remove indirection in threading (issue #10968).Éric Araujo2011-07-271-12/+1
|/ | | | | | | | | | | | The public names (Thread, Condition, etc.) used to be factory functions returning instances of hidden classes (_Thread, _Condition, etc.), because (if Guido recalls correctly) this code pre-dates the ability to subclass extension types. It is now possible to inherit from Thread and other classes, without having to import the private underscored names like multiprocessing did. A doc update will follow: a patch is under discussion on the issue.
* 9162: fix license in multiprocessing filesR. David Murray2010-12-142-2/+54
|
* Merged revisions 66557 via svnmerge fromBenjamin Peterson2008-09-221-6/+0
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r66557 | benjamin.peterson | 2008-09-22 16:11:43 -0500 (Mon, 22 Sep 2008) | 1 line use the new threading properties for multiprocessing (reviewed by Jesse #3927) ........
* Merged revisions 65864 via svnmerge fromBenjamin Peterson2008-08-191-1/+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 65828 via svnmerge fromBenjamin Peterson2008-08-181-5/+4
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r65828 | benjamin.peterson | 2008-08-18 13:31:58 -0500 (Mon, 18 Aug 2008) | 1 line patch up multiprocessing until it's API can be changed too ........
* Merged revisions 64125 via svnmerge fromBenjamin Peterson2008-06-111-18/+11
| | | | | | | | | | 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-112-0/+204
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 ........