Further document check_output

This commit is contained in:
Brad Warren 2017-08-10 14:18:27 -07:00
parent 5beaae3b65
commit 4715b2b12c

View file

@ -27,6 +27,9 @@ def check_output(*args, **kwargs):
:returns: data printed to stdout
:rtype: str
:raises ValueError: if arguments are invalid
:raises subprocess.CalledProcessError: if the command fails
"""
for keyword in ('stdout', 'universal_newlines',):
if keyword in kwargs: