Message 64164 - Python tracker
Just realized that passing 'close_fds=True' also circumvents the problem:
s = subprocess.Popen(("cat"), stdin=subprocess.PIPE, close_fds=True)
Should this issue be closed as it's that easy to avoid? I would still
like to know what happens here, though.