summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGregory P. Smith <greg@mad-scientist.com>2008-12-04 20:21:09 (GMT)
committerGregory P. Smith <greg@mad-scientist.com>2008-12-04 20:21:09 (GMT)
commit97f49f4be7ab6d4b570029be4b4439cc29be2f74 (patch)
treecc0749f51c02c4450f041899410a529a025aa491 /Misc
parent32d1408192c80f072afdf92ca3ab0ef6622387e7 (diff)
downloadcpython-97f49f4be7ab6d4b570029be4b4439cc29be2f74.zip
cpython-97f49f4be7ab6d4b570029be4b4439cc29be2f74.tar.gz
cpython-97f49f4be7ab6d4b570029be4b4439cc29be2f74.tar.bz2
Adds a subprocess.check_call_output() function to return the output from a
process on success or raise an exception on error.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 300c819..7905795 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -60,6 +60,9 @@ Core and Builtins
Library
-------
+- Added the subprocess.check_call_output() convenience function to get output
+ from a subprocess on success or raise an exception on error.
+
- Issue #1055234: cgi.parse_header(): Fixed parsing of header parameters to
support unusual filenames (such as those containing semi-colons) in
Content-Disposition headers.