Commit 8afcec41 authored by Andrew Svetlov's avatar Andrew Svetlov

Issue #15501: Document exception classes in subprocess module.

Initial patch by Anton Barkovsky.
parent 359b5032
......@@ -172,6 +172,26 @@ use cases, the underlying :class:`Popen` interface can be used directly.
output.
.. exception:: CalledProcessError
Exception raised when a process run by :func:`check_call` or
:func:`check_output` returns a non-zero exit status.
.. attribute:: returncode
Exit status of the child process.
.. attribute:: cmd
Command that was used to spawn the child process.
.. attribute:: output
Output of the child process if this exception is raised by
:func:`check_output`. Otherwise, ``None``.
.. _frequently-used-arguments:
Frequently Used Arguments
......
......@@ -44,6 +44,7 @@ Jeff Balogh
Matt Bandy
Michael J. Barber
Chris Barker
Anton Barkovsky
Nick Barnes
Quentin Barnes
Richard Barran
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment