Message8664

Author zyasoft
Recipients fwierzbicki, gary.aviv, xingyong, zyasoft
Date 2014-06-18.17:36:31
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1403112992.49.0.501879902016.issue1984@psf.upfronthosting.co.za>
In-reply-to
Content
Windows does support os.pipe, but apparently this is only useful for threads communicating in the *same* process.

However, the normal usage is with os.fork, which we cannot support on the JVM until the JVM itself supports such forking. (Something that has been advocated for Java 9.) So this makes supporting os.pipe very low priority.

With this analysis, I'm going to put this in "postponed" because the use case is so narrow and there are much better communication mechanisms. However, a pure Python patch that implements this in terms of StringIO is probably the right way to do it (see _socket._fileobject, not certain if there's something we could use that's more direct)
History
Date User Action Args
2014-06-18 17:36:32zyasoftsetmessageid: <1403112992.49.0.501879902016.issue1984@psf.upfronthosting.co.za>
2014-06-18 17:36:32zyasoftsetrecipients: + zyasoft, fwierzbicki, gary.aviv, xingyong
2014-06-18 17:36:32zyasoftlinkissue1984 messages
2014-06-18 17:36:31zyasoftcreate