Re: os.pipe() + os.fork()

2010-02-20 Thread Sebastian Noack
is the same behaviour. Regards Sebastian Noack signature.asc Description: PGP signature -- http://mail.python.org/mailman/listinfo/python-list

os.pipe() + os.fork()

2010-02-20 Thread Sebastian Noack
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))