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 pitrou
Recipients benjamin.peterson, pitrou, stutzbach
Date 2010-09-24.15:33:05
SpamBayes Score 0.0022327339
Marked as misclassified No
Message-id <1285342378.3243.9.camel@localhost.localdomain>
In-reply-to <1285341990.86.0.837646493437.issue9939@psf.upfronthosting.co.za>
Content
> > It would be a non-seekable in-memory bytes buffer with distinct 
> > read and write pointers, so as to act like a system FIFO or a 
> > socket.makefile() object.
> 
> What would it do when the equivalent system FIFO object would block?

Simply buffer everything.
(this is more aimed at mocking sockets than system FIFOs; system FIFOs
can be trivially wrapped in a BufferedRWPair)

> > (you may point to os.pipe() but it has problems such as limited buffer
> > size: try to write many bytes to the write end and it will block until
> > the other end tries to read something)
> 
> In the past, I've gotten around that limitation by using threads
> (which, admittedly, certainly had its own drawbacks)

Sure, but that's a lot of complication in itself.
History
Date User Action Args
2010-09-24 15:33:06pitrousetrecipients: + pitrou, benjamin.peterson, stutzbach
2010-09-24 15:33:05pitroulinkissue9939 messages
2010-09-24 15:33:05pitroucreate