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 pravn
Recipients martin.panter, pravn
Date 2019-02-11.07:39:18
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1549870758.1.0.531419057183.issue35928@roundup.psfhosted.org>
In-reply-to
Content
>>> f = TextIOWrapper(BufferedRWPair(BytesIO(b"Hello\nYou\n"), BytesIO()))
>>> f.readline()
'Hello\n'
>>> f.write(_)
6
>>> f.readline()  # Returns empty string
''
History
Date User Action Args
2019-02-11 07:39:19pravnsetrecipients: + pravn, martin.panter
2019-02-11 07:39:18pravnsetmessageid: <1549870758.1.0.531419057183.issue35928@roundup.psfhosted.org>
2019-02-11 07:39:18pravnlinkissue35928 messages
2019-02-11 07:39:18pravncreate