Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
8afcec41
Commit
8afcec41
authored
Aug 09, 2012
by
Andrew Svetlov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue #15501: Document exception classes in subprocess module.
Initial patch by Anton Barkovsky.
parent
359b5032
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
0 deletions
+21
-0
Doc/library/subprocess.rst
Doc/library/subprocess.rst
+20
-0
Misc/ACKS
Misc/ACKS
+1
-0
No files found.
Doc/library/subprocess.rst
View file @
8afcec41
...
...
@@ -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
...
...
Misc/ACKS
View file @
8afcec41
...
...
@@ -44,6 +44,7 @@ Jeff Balogh
Matt Bandy
Michael J. Barber
Chris Barker
Anton Barkovsky
Nick Barnes
Quentin Barnes
Richard Barran
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment