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 jonathan.slenders
Recipients jonathan.slenders
Date 2015-06-30.07:19:16
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1435648757.18.0.0558265298673.issue24536@psf.upfronthosting.co.za>
In-reply-to
Content
As discussed on python-ideas, os.pipe should return a structsequence instead of a plain tuple.

To be decided is the naming for the read and write end.
Personally, I'm in favour of using readfd/writefd.

> our_pipe = pipe()
> os.write(our_pipe.writefd, b'data')
> os.read(our_pipe.readfd, 1024)
History
Date User Action Args
2015-06-30 07:19:17jonathan.slenderssetrecipients: + jonathan.slenders
2015-06-30 07:19:17jonathan.slenderssetmessageid: <1435648757.18.0.0558265298673.issue24536@psf.upfronthosting.co.za>
2015-06-30 07:19:17jonathan.slenderslinkissue24536 messages
2015-06-30 07:19:16jonathan.slenderscreate