diff options
author | Andre Delfino <adelfino@gmail.com> | 2020-12-17 01:37:28 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-17 01:37:28 (GMT) |
commit | dcc997cd28ab33ebac44182ee55533c1b37689f7 (patch) | |
tree | 1f3dad6d0fe646c4f3e5f3ca1219d88e2156383c /Doc/library/http.cookies.rst | |
parent | c143cc379c7411598e7b7b652bac7935e4687d07 (diff) | |
download | cpython-dcc997cd28ab33ebac44182ee55533c1b37689f7.zip cpython-dcc997cd28ab33ebac44182ee55533c1b37689f7.tar.gz cpython-dcc997cd28ab33ebac44182ee55533c1b37689f7.tar.bz2 |
[doc] Fix erroneous backslashes in signatures and names (GH-23658)
The issue being resolved is shown in the 3.10 docs (if you select docs for older versions you won't see a visual glitch).
The newer sphinx version that produces the 3.10 docs doesn't treat the backslash to escape things in some situations it previously did.
Diffstat (limited to 'Doc/library/http.cookies.rst')
-rw-r--r-- | Doc/library/http.cookies.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/http.cookies.rst b/Doc/library/http.cookies.rst index 17792b2..a2c1eb0 100644 --- a/Doc/library/http.cookies.rst +++ b/Doc/library/http.cookies.rst @@ -93,7 +93,7 @@ Cookie Objects :meth:`value_decode` are inverses on the range of *value_decode*. -.. method:: BaseCookie.output(attrs=None, header='Set-Cookie:', sep='\\r\\n') +.. method:: BaseCookie.output(attrs=None, header='Set-Cookie:', sep='\r\n') Return a string representation suitable to be sent as HTTP headers. *attrs* and *header* are sent to each :class:`Morsel`'s :meth:`output` method. *sep* is used |