On Wed, Sep 19, 2012 at 2:36 PM, Ismael Farfán <[email protected]> wrote: > It seems like I can use os.fstat to find out if a fd exists and also > get it's type and mode (I'm getting some pipes too : )
Sure, because files and pipes both use the file descriptor abstraction. If your process does any networking, you'll find sockets in there as well. -- http://mail.python.org/mailman/listinfo/python-list
