diff options
author | Subhendu Ghosh <subho.prp@gmail.com> | 2017-02-25 14:59:05 (GMT) |
---|---|---|
committer | Nick Coghlan <ncoghlan@gmail.com> | 2017-02-25 14:59:05 (GMT) |
commit | ae160bba2030a7b6c86f6c7aeaf2f9d3fdb627b7 (patch) | |
tree | 82df8ee0582f8a14dba8154fdd18b5383ac21f62 /Misc | |
parent | 21024f06622c4c55b666adb130797a4ee205d005 (diff) | |
download | cpython-ae160bba2030a7b6c86f6c7aeaf2f9d3fdb627b7.zip cpython-ae160bba2030a7b6c86f6c7aeaf2f9d3fdb627b7.tar.gz cpython-ae160bba2030a7b6c86f6c7aeaf2f9d3fdb627b7.tar.bz2 |
bpo-26128: Added __init__to subprocess.STARTUPINFO (#171)
The Windows-specific subprocess.STARTUPINFO class now accepts
keyword-only arguments to its constructor to set the various
data attributes.
Patch by Subhendu Ghosh.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/ACKS | 1 | ||||
-rw-r--r-- | Misc/NEWS | 5 |
2 files changed, 5 insertions, 1 deletions
@@ -1726,3 +1726,4 @@ Doug Zongker Peter Åstrand evilzero Dhushyanth Ramasamy +Subhendu Ghosh @@ -13,7 +13,7 @@ Core and Builtins - bpo-28598: Support __rmod__ for subclasses of str being called before str.__mod__. Patch by Martijn Pieters. -- bpo-29607: Fix stack_effect computation for CALL_FUNCTION_EX. +- bpo-29607: Fix stack_effect computation for CALL_FUNCTION_EX. Patch by Matthieu Dartiailh. - bpo-29602: Fix incorrect handling of signed zeros in complex constructor for @@ -1243,6 +1243,9 @@ Core and Builtins Library ------- +- Issue #26128: Added keyword-only arguments support for + subprocess.STARTUPINFO + - Issue #27517: LZMA compressor and decompressor no longer raise exceptions if given empty data twice. Patch by Benjamin Fogle. |