Yurttas/PL/SL/python/docs/core-python-programming/doc/20/lib/popen3-objects.html
Jump to navigation
Jump to search
6.8.1 Popen3 and Popen4 Objects
Instances of the Popen3 and Popen4 classes have the following methods:
- poll ()
- Returns
-1if child process hasn't completed yet, or its return code otherwise.
- wait ()
- Waits for and returns the return code of the child process.
The following attributes are also available:
- fromchild
- A file object that provides output from the child process. For Popen4 instances, this will provide both the standard output and standard error streams.
- tochild
- A file object that provides input to the child process.
- childerr
- Where the standard error from the child process goes is capturestderr was true for the constructor, or
None. This will always beNonefor Popen4 instances.
- pid
- The process ID of the child process.
See About this document... for information on suggesting changes.