Waits for and returns the status code of the child process. The
status code encodes both the return code of the process and
information about whether it exited using the exit()
system call or died due to a signal. Functions to help interpret the
status code are defined in the os module; see section
6.1.5 for the W*() family of functions.
A file object that provides output from the child process. For
Popen4 instances, this will provide both the standard output
and standard error streams.
Where the standard error from the child process goes is
capturestderr was true for the constructor, or None.
This will always be None for Popen4 instances.