Re: os.pipe() + os.fork()
is the same behaviour. Regards Sebastian Noack signature.asc Description: PGP signature -- http://mail.python.org/mailman/listinfo/python-list
os.pipe() + os.fork()
and if it is possible work around it. Regards Sebastian Noack --- import os def test_pipe_sync(): pipe = os.pipe() os.write(pipe[1], 'Spam') os.close(pipe[1]) print repr(os.read(pipe[0], 4))