From: Berker Peksag Date: Mon, 17 Oct 2016 21:34:46 +0000 (+0300) Subject: Fix default value of StreamReader.readuntil() X-Git-Tag: v3.6.0b3~112^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e5b0bd1ba2687a582bbb7e47580e6507ed2a9253;p=thirdparty%2FPython%2Fcpython.git Fix default value of StreamReader.readuntil() Reported by Sam Lunt on docs@p.o. --- diff --git a/Doc/library/asyncio-stream.rst b/Doc/library/asyncio-stream.rst index 0ab08e1b6e3e..6177b4bb0f8b 100644 --- a/Doc/library/asyncio-stream.rst +++ b/Doc/library/asyncio-stream.rst @@ -142,7 +142,7 @@ StreamReader This method is a :ref:`coroutine `. - .. coroutinemethod:: readuntil(separator=b'\n') + .. coroutinemethod:: readuntil(separator=b'\\n') Read data from the stream until ``separator`` is found.