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, BreamoreBoy, ajaksu2, astrand, ericpruitt, giampaolo.rodola, josiahcarlson, ooooooooo, parameter, r.david.murray, rosslagerwall, sbt, techtonik
Date 2012-05-22.14:27:40
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1337696860.87.0.0554651711103.issue1191964@psf.upfronthosting.co.za>
In-reply-to
Content
Personally, I would factor out the code for Popen.communicate() in to a Communicator class which wraps a Popen object and has a method

    communicate(input, timeout=None) -> (bytes_written, output, error)

On Windows this would use threads, and on Unix, select.
History
Date User Action Args
2012-05-22 14:27:40sbtsetrecipients: + sbt, josiahcarlson, astrand, parameter, techtonik, giampaolo.rodola, ajaksu2, ooooooooo, r.david.murray, ericpruitt, BreamoreBoy, Andrew.Boettcher, rosslagerwall
2012-05-22 14:27:40sbtsetmessageid: <1337696860.87.0.0554651711103.issue1191964@psf.upfronthosting.co.za>
2012-05-22 14:27:40sbtlinkissue1191964 messages
2012-05-22 14:27:40sbtcreate