summaryrefslogtreecommitdiffstats
path: root/Lib/multiprocessing/popen_fork.py
Commit message (Collapse)AuthorAgeFilesLines
* [3.6] bpo-31804: Fix multiprocessing.Process with broken standard streams ↵Antoine Pitrou2018-03-111-8/+1
| | | | | | | | (GH-6079) (GH-6081) In some conditions the standard streams will be None or closed in the child process (for example if using "pythonw" instead of "python" on Windows). Avoid failing with a non-0 exit code in those conditions. Report and initial patch by poxthegreat.. (cherry picked from commit e756f66c83786ee82f5f7d45931ae50a6931dd7f)
* [3.6] bpo-28326: Fix multiprocessing.Process when stdout and/or stderr is ↵Antoine Pitrou2017-10-221-2/+8
| | | | | | | | | | | closed or None. (GH-4073). (#4075) * bpo-28326: Fix multiprocessing.Process when stdout and/or stderr is closed or None. (#4073) (cherry picked from commit daeefd2e049b74340307481112a39f77de0f4769) * [3.6] bpo-28326: Fix multiprocessing.Process when stdout and/or stderr is closed or None. (GH-4073). (cherry picked from commit daeefd2e049b74340307481112a39f77de0f4769)
* Issue #23285: PEP 475 -- Retry system calls failing with EINTR.Charles-François Natali2015-02-071-3/+0
|
* Merge 3.3.Richard Oudkerk2014-03-231-1/+1
|
* Issue #18999: Make multiprocessing use context objects.Richard Oudkerk2013-10-161-4/+0
| | | | | This allows different parts of a program to use different methods for starting processes without interfering with each other.
* Issue #18571: Implementation of the PEP 446: file descriptors and file handlesVictor Stinner2013-08-271-1/+1
| | | | | are now created non-inheritable; add functions os.get/set_inheritable(), os.get/set_handle_inheritable() and socket.socket.get/set_inheritable().
* Issue #8713: Support alternative start methods in multiprocessing on Unix.Richard Oudkerk2013-08-141-0/+87
See http://hg.python.org/sandbox/sbt#spawn