Class: _PickleHandle | Bio/Tools/MultiProc/copen.py | ||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
This is a decorator around a _CommandHandle. Instead of returning the results as a string, it returns a python object. The child process must pickle its output to the pipe! Members: pid what is the PID of the subprocess? killsig what signal killed the child process? status what was the status of the command? error if an error occurred, this describes it. Methods: close Close this process, killing it if necessary. fileno Return the fileno used to read from the process. wait Wait for the process to finish. poll Is the process finished? elapsed How much time has this process taken? read Return a Python object.
|