Elias Fotinis wrote:
From: "Antoine Martin"

I had forgotten about the pipes (doh), I guess I should start the child
with stdin=stdout=stderr=None then?

That won't necessarily close the OS-level file descriptors,
though. If you want that, you need to do something like

  for i in xrange(3):
    os.close(i)

--
Greg
_______________________________________________
python-win32 mailing list
python-win32@python.org
http://mail.python.org/mailman/listinfo/python-win32

Reply via email to