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 vstinner
Recipients berker.peksag, eryksun, gdr@garethrees.org, ncoghlan, serhiy.storchaka, vstinner
Date 2017-10-12.15:09:53
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1507820993.78.0.213398074469.issue28647@psf.upfronthosting.co.za>
In-reply-to
Content
Interesting comment in create_stdio() of Python/pylifecycle.c:
---
    /* stdin is always opened in buffered mode, first because it shouldn't
       make a difference in common use cases, second because TextIOWrapper
       depends on the presence of a read1() method which only exists on
       buffered streams.
    */
    if (Py_UnbufferedStdioFlag && write_mode)
        buffering = 0;
    else
        buffering = -1;
---

stdin is always buffered ;-)

I created bpo-31775: "Support unbuffered TextIOWrapper".
History
Date User Action Args
2017-10-12 15:09:53vstinnersetrecipients: + vstinner, ncoghlan, gdr@garethrees.org, berker.peksag, serhiy.storchaka, eryksun
2017-10-12 15:09:53vstinnersetmessageid: <1507820993.78.0.213398074469.issue28647@psf.upfronthosting.co.za>
2017-10-12 15:09:53vstinnerlinkissue28647 messages
2017-10-12 15:09:53vstinnercreate