This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author sbt
Recipients Andrew.Boettcher, ajaksu2, astrand, cvrebert, ericpruitt, giampaolo.rodola, josiahcarlson, ooooooooo, parameter, r.david.murray, rosslagerwall, sbt, techtonik
Date 2014-03-30.11:28:34
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1396178914.9.0.518690077362.issue1191964@psf.upfronthosting.co.za>
In-reply-to
Content
Using asyncio and the IOCP eventloop it is not necessary to use threads.  (Windows may use worker threads for overlapped IO, but that is hidden from Python.)  See

  https://code.google.com/p/tulip/source/browse/examples/child_process.py

for vaguely "expect-like" interaction with a child python process which works on Windows.  It writes commands to stdin, and reads results/tracebacks from stdout/stderr.

Of course, it is also possible to use overlapped IO directly.
History
Date User Action Args
2014-03-30 11:28:34sbtsetrecipients: + sbt, josiahcarlson, astrand, parameter, techtonik, giampaolo.rodola, ajaksu2, ooooooooo, r.david.murray, cvrebert, ericpruitt, Andrew.Boettcher, rosslagerwall
2014-03-30 11:28:34sbtsetmessageid: <1396178914.9.0.518690077362.issue1191964@psf.upfronthosting.co.za>
2014-03-30 11:28:34sbtlinkissue1191964 messages
2014-03-30 11:28:34sbtcreate