summaryrefslogtreecommitdiff
path: root/Doc/library/asyncio-stream.rst
diff options
context:
space:
mode:
authorJulien Palard <julien@palard.fr>2021-01-04 13:43:38 +0100
committerJulien Palard <julien@palard.fr>2021-01-04 13:44:03 +0100
commitb806721306b5fcbfbc373f9edf7cf18c12085ec2 (patch)
tree30911624a1795eaa435c55e5dc501108a99349a3 /Doc/library/asyncio-stream.rst
parenteedeaef1f22d27264ce9b031da80fe2485e85e69 (diff)
downloadcpython-git-revert-23827-backport-dcc997c-3.9.tar.gz
Revert "[3.9] [doc] Fix erroneous backslashes in signatures and names (GH-23658)"revert-23827-backport-dcc997c-3.9
This partially reverts commit e89993cff4e60fcf32643fc613d0544f3dbcd98a, which was removing backslashes in documentations compiled with Sphinx < 3, used for Python 3.8 and 3.9 docs.
Diffstat (limited to 'Doc/library/asyncio-stream.rst')
-rw-r--r--Doc/library/asyncio-stream.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/asyncio-stream.rst b/Doc/library/asyncio-stream.rst
index 584bf10fc0..714de8d41a 100644
--- a/Doc/library/asyncio-stream.rst
+++ b/Doc/library/asyncio-stream.rst
@@ -192,7 +192,7 @@ StreamReader
can be read. Use the :attr:`IncompleteReadError.partial`
attribute to get the partially read data.
- .. coroutinemethod:: readuntil(separator=b'\n')
+ .. coroutinemethod:: readuntil(separator=b'\\n')
Read data from the stream until *separator* is found.