Package Bio :: Package MultiProc :: Module copen :: Class _PickleHandle
[hide private]
[frames] | no frames]

Class _PickleHandle

source code

Members: pid what is the PID of the subprocess? killsig what signal killed the child process? status what was the status of the command?

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.

Instance Methods [hide private]
 
__init__(self, pid, cread, errread=None)
Create a wrapper around a running process.
source code
 
__getattr__(self, attr) source code
 
read(self)
Return a Python object or ''.
source code
Method Details [hide private]

__init__(self, pid, cread, errread=None)
(Constructor)

source code 

Create a wrapper around a running process. pid is the process ID. cread is the file object used to read from the child. errread is an optional file object used to read errors from the child.