summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSubhendu Ghosh <subho.prp@gmail.com>2017-02-25 14:59:05 (GMT)
committerNick Coghlan <ncoghlan@gmail.com>2017-02-25 14:59:05 (GMT)
commitae160bba2030a7b6c86f6c7aeaf2f9d3fdb627b7 (patch)
tree82df8ee0582f8a14dba8154fdd18b5383ac21f62 /Misc
parent21024f06622c4c55b666adb130797a4ee205d005 (diff)
downloadcpython-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/ACKS1
-rw-r--r--Misc/NEWS5
2 files changed, 5 insertions, 1 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index 255318e..1995adb 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -1726,3 +1726,4 @@ Doug Zongker
Peter Åstrand
evilzero
Dhushyanth Ramasamy
+Subhendu Ghosh
diff --git a/Misc/NEWS b/Misc/NEWS
index 74ec8c3..4413c51 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.