From e5b0bd1ba2687a582bbb7e47580e6507ed2a9253 Mon Sep 17 00:00:00 2001 From: Berker Peksag Date: Tue, 18 Oct 2016 00:34:46 +0300 Subject: Fix default value of StreamReader.readuntil() Reported by Sam Lunt on docs@p.o. --- Doc/library/asyncio-stream.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/asyncio-stream.rst b/Doc/library/asyncio-stream.rst index 0ab08e1..6177b4b 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. -- cgit v0.12