Staging
v0.5.1
https://github.com/python/cpython
Revision 9daecf37a571e98aaf43a387bcc9e41a7132f477 authored by Victor Stinner on 15 January 2019, 23:02:35 UTC, committed by GitHub on 15 January 2019, 23:02:35 UTC
The subprocess module can now use the os.posix_spawn() function
in some cases for better performance. Currently, it is only used on macOS
and Linux (using glibc 2.24 or newer) if all these conditions are met:

* executable path contains a directory
* close_fds=False
* preexec_fn, pass_fds, cwd, stdin, stdout, stderr
  and start_new_session parameters are not set

Co-authored-by: Joannah Nanjekye <nanjekyejoannah@gmail.com>
1 parent a37f524
Raw File
Tip revision: 9daecf37a571e98aaf43a387bcc9e41a7132f477 authored by Victor Stinner on 15 January 2019, 23:02:35 UTC
bpo-35537: subprocess uses os.posix_spawn in some cases (GH-11452)
Tip revision: 9daecf3
CODE_OF_CONDUCT.md
# Code of Conduct

Please note that all interactions on
[Python Software Foundation](https://www.python.org/psf-landing/)-supported
infrastructure is [covered](https://www.python.org/psf/records/board/minutes/2014-01-06/#management-of-the-psfs-web-properties>)
by the [PSF Code of Conduct](https://www.python.org/psf/codeofconduct/),
which includes all infrastructure used in the development of Python itself
(e.g. mailing lists, issue trackers, GitHub, etc.).

In general this means everyone is expected to be open, considerate, and
respectful of others no matter what their position is within the project.

back to top