diff options
author | Gregory P. Smith <greg@krypto.org> | 2019-10-12 20:24:56 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-12 20:24:56 (GMT) |
commit | f3751efb5c8b53b37efbbf75d9422c1d11c01646 (patch) | |
tree | 2e650d45ee4a530df31c2b66d9457d11e6996f33 /Misc | |
parent | 8177404d520e81f16324a900f093adf3856d33f8 (diff) | |
download | cpython-f3751efb5c8b53b37efbbf75d9422c1d11c01646.zip cpython-f3751efb5c8b53b37efbbf75d9422c1d11c01646.tar.gz cpython-f3751efb5c8b53b37efbbf75d9422c1d11c01646.tar.bz2 |
bpo-38417: Add umask support to subprocess (GH-16726)
On POSIX systems, allow the umask to be set in the child process before we exec.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2019-10-12-00-13-47.bpo-38417.W7x_aS.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2019-10-12-00-13-47.bpo-38417.W7x_aS.rst b/Misc/NEWS.d/next/Library/2019-10-12-00-13-47.bpo-38417.W7x_aS.rst new file mode 100644 index 0000000..c2356dd --- /dev/null +++ b/Misc/NEWS.d/next/Library/2019-10-12-00-13-47.bpo-38417.W7x_aS.rst @@ -0,0 +1,2 @@ +Added support for setting the umask in the child process to the subprocess +module on POSIX systems. |