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. :copyright: 2000-2008 LOGILAB S.A. (Paris, FRANCE), all rights reserved. :contact: http://www.logilab.fr/ -- mailto:contact@logilab.fr :license: General Public License version 2 - http://www.gnu.org/licenses
Classes | |
frozenset immutable set (can be set in dictionnaries) |
|
set mutable set |
|
CalledProcessError This exception is raised when a process run by check_call() returns a non-zero exit status. |
Functions | |||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
bool |
|
||
bool |
|
||
|
|||
|
Variables | |
Set = class_renamed('Set', set, 'logilab.common.compat.Set is
|
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"]) |
Variables Details |
Set
|
Home | Trees | Indices | Help |
|
---|
Generated by Epydoc 3.0.1 on Thu Jun 4 19:39:02 2009 | http://epydoc.sourceforge.net |