Tim Golden <m...@timgolden.me.uk> added the comment:

I've just run this:

<code>
import os
fd = os.popen("cat.exe", "w")

for i in range (100):
  _ = fd.write ("%d\n" % i)

fd.flush ()

</code>

and seen the expected list of numbers on the screen. cat.exe is from the 
gnuwin32 tools but I'm assuming that any equivalent .exe would do as well.

I suspect that the OP's issue may be with buffering, but I'd like to hear back. 
Switching to pending before closing as invalid. If the OP wishes to come back 
with a repeatable failing case I'm quite happy to look at it.

----------
status: open -> pending

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue8006>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to