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 Cezary.Wagner
Recipients Cezary.Wagner, asvetlov, paul.moore, steve.dower, tim.golden, yselivanov, zach.ware
Date 2018-11-17.11:56:40
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1542455800.69.0.788709270274.issue35268@psf.upfronthosting.co.za>
In-reply-to
Content
It looks like StremReader.read() not work and StremReader.readline() in Windows or I am not understand documentation.

https://docs.python.org/3/library/asyncio-stream.html

coroutine read(n=-1)

    Read up to n bytes. If n is not provided, or set to -1, read until EOF and return all read bytes.

    If EOF was received and the internal buffer is empty, return an empty bytes object.



coroutine readline()

    Read one line, where “line” is a sequence of bytes ending with \n.

    If EOF is received and \n was not found, the method returns partially read data.

    If EOF is received and the internal buffer is empty, return an empty bytes object.
History
Date User Action Args
2018-11-17 11:56:40Cezary.Wagnersetrecipients: + Cezary.Wagner, paul.moore, tim.golden, asvetlov, zach.ware, yselivanov, steve.dower
2018-11-17 11:56:40Cezary.Wagnersetmessageid: <1542455800.69.0.788709270274.issue35268@psf.upfronthosting.co.za>
2018-11-17 11:56:40Cezary.Wagnerlinkissue35268 messages
2018-11-17 11:56:40Cezary.Wagnercreate