summaryrefslogtreecommitdiffstats
path: root/Lib/multiprocessing/context.py
Commit message (Collapse)AuthorAgeFilesLines
* Issue #28779: multiprocessing.set_forkserver_preload() would crash the ↵Antoine Pitrou2016-12-101-1/+1
|\ | | | | | | forkserver process if a preloaded module instantiated some multiprocessing objects such as locks.
| * Issue #28779: multiprocessing.set_forkserver_preload() would crash the ↵Antoine Pitrou2016-12-101-1/+1
| | | | | | | | forkserver process if a preloaded module instantiated some multiprocessing objects such as locks.
* | Issue #28053: Applying refactorings, docs and other cleanup to follow.Davin Potts2016-09-091-2/+11
|/
* Issue #18999: Make multiprocessing use context objects.Richard Oudkerk2013-10-161-0/+348
This allows different parts of a program to use different methods for starting processes without interfering with each other.