BufferedReader.read_line
undocumented behavior on new line characters
#18751
Labels
Unit: Documentation
Bugs/feature requests, that are related to the documentations.
Describe the issue
The documentation says the reader stops at
\n
but it does not do that: replies from a Redis server always end in\r\n
andread_reply
does not only stop at\n
, it also stops at\r\n
and does not return these characters.This is a problem for me, I will have to rewrite using
TcpConn.read
instead and providing my own buffer.Links
Problem was identified here
read_line
The text was updated successfully, but these errors were encountered: