Home | Trees | Indices | Help |
|
---|
|
Wrappers around some builtins introduced in python 2.3, 2.4 and 2.5, making them available in for earlier versions of python.
Classes | |
frozenset immutable set (can be set in dictionaries) |
|
set mutable set |
|
CalledProcessError This exception is raised when a process run by check_call() returns a non-zero exit status. |
Functions | |||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
bool |
|
||
bool |
|
||
|
|||
|
|||
|
Function Details |
Run command with arguments. Wait for command to complete, then return the returncode attribute. The arguments are the same as for the Popen constructor. Example: retcode = call(["ls", "-l"]) |
Run command with arguments. Wait for command to complete. If the exit code was zero then return, otherwise raise CalledProcessError. The CalledProcessError object will have the return code in the returncode attribute. The arguments are the same as for the Popen constructor. Example: check_call(["ls", "-l"]) |
Home | Trees | Indices | Help |
|
---|
Generated by Epydoc 3.0.1 on Fri Jun 11 21:52:20 2010 | http://epydoc.sourceforge.net |