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 martin.panter
Recipients Rosuav, ethan.furman, jonathan.slenders, martin.panter, yselivanov
Date 2015-07-18.05:07:51
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1437196072.64.0.487392046134.issue24536@psf.upfronthosting.co.za>
In-reply-to
Content
The original Python-ideas thread: <https://www.marc.info/?t=143558954500004>

If you want shorter field names, how about just r and w (as they are currently documented)?

os.write(our_pipe.w, b"data")
os.read(our_pipe.r, 1024)

“Input” and “output” would also work for me (though I am also happy with read, read_fd, etc). However it does seem a bit novel; in my experience people tend to say pipes have read and write ends, not inputs and outputs.

os.write(our_pipe.input, b"data")
os.read(our_pipe.output, 1024)
History
Date User Action Args
2015-07-18 05:07:52martin.pantersetrecipients: + martin.panter, ethan.furman, Rosuav, yselivanov, jonathan.slenders
2015-07-18 05:07:52martin.pantersetmessageid: <1437196072.64.0.487392046134.issue24536@psf.upfronthosting.co.za>
2015-07-18 05:07:52martin.panterlinkissue24536 messages
2015-07-18 05:07:51martin.pantercreate