Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | bpo-36888: Add multiprocessing.parent_process() (GH-13247) | Thomas Moreau | 2019-05-20 | 1 | -1/+5 |
| | |||||
* | Fix bpo-30596: Add close() method to multiprocessing.Process (#2010) | Antoine Pitrou | 2017-06-24 | 1 | -1/+1 |
| | | | | | | | | | | * Fix bpo-30596: Add close() method to multiprocessing.Process * Raise ValueError if close() is called before the Process is finished running * Add docs * Add NEWS blurb | ||||
* | Fix bpo-30589: improve Process.exitcode with forkserver (#1989) | Antoine Pitrou | 2017-06-12 | 1 | -3/+5 |
| | | | | | | | | * Fix bpo-30589: improve Process.exitcode with forkserver When the child is killed, Process.exitcode should return -signum, not 255. * Add Misc/NEWS | ||||
* | Issue #28053: Applying refactorings, docs and other cleanup to follow. | Davin Potts | 2016-09-09 | 1 | -4/+3 |
| | |||||
* | Merge 3.3. | Richard Oudkerk | 2014-03-23 | 1 | -1/+1 |
| | |||||
* | Issue #18999: Make multiprocessing use context objects. | Richard Oudkerk | 2013-10-16 | 1 | -9/+3 |
| | | | | | 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 Oudkerk | 2013-08-14 | 1 | -0/+75 |
See http://hg.python.org/sandbox/sbt#spawn |