Re: [Python-Dev] Async subprocesses on Windows with tulip

2013-05-19 Thread Richard Oudkerk
On 19/05/2013 5:03pm, Benjamin Peterson wrote: > Shouldn't this go to the python-tulip list? Yes. Sorry about that. -- Richard ___ Python-Dev mailing list Python-Dev@python.org http://mail.python.org/mailman/listinfo/python-dev Unsubscribe: http://

Re: [Python-Dev] Async subprocesses on Windows with tulip

2013-05-19 Thread Benjamin Peterson
Shouldn't this go to the python-tulip list? 2013/5/19 Richard Oudkerk : > Attached is a pretty trivial example of asynchronous interaction with a > python subprocess using tulip on Windows. It does not use transports or > protocols -- instead sock_recv() and sock_sendall() are used inside tasks.

[Python-Dev] Async subprocesses on Windows with tulip

2013-05-19 Thread Richard Oudkerk
Attached is a pretty trivial example of asynchronous interaction with a python subprocess using tulip on Windows. It does not use transports or protocols -- instead sock_recv() and sock_sendall() are used inside tasks. I am not sure what the plan is for dealing with subprocesses currently. S