diff options
author | Andre Delfino <adelfino@gmail.com> | 2020-12-22 02:56:55 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-22 02:56:55 (GMT) |
commit | 02349e2dc9d93202c658ae383b2de2e36b2366f8 (patch) | |
tree | 6d2fa2095cff856746bf05bf5cfea768f763da01 /Doc/library/base64.rst | |
parent | d3ab4c82a9b594d3cd98062eece19672fe42bce2 (diff) | |
download | cpython-02349e2dc9d93202c658ae383b2de2e36b2366f8.zip cpython-02349e2dc9d93202c658ae383b2de2e36b2366f8.tar.gz cpython-02349e2dc9d93202c658ae383b2de2e36b2366f8.tar.bz2 |
[3.8] [doc] Fix erroneous backslashes in signatures and names (GH-23658) (GH-23828)
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..
(cherry picked from commit dcc997cd28ab33ebac44182ee55533c1b37689f7)
Co-authored-by: Andre Delfino <adelfino@gmail.com>
Diffstat (limited to 'Doc/library/base64.rst')
-rw-r--r-- | Doc/library/base64.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/base64.rst b/Doc/library/base64.rst index ad9f5f5..3c63c15 100644 --- a/Doc/library/base64.rst +++ b/Doc/library/base64.rst @@ -178,7 +178,7 @@ The modern interface provides: .. versionadded:: 3.4 -.. function:: a85decode(b, *, foldspaces=False, adobe=False, ignorechars=b' \\t\\n\\r\\v') +.. function:: a85decode(b, *, foldspaces=False, adobe=False, ignorechars=b' \t\n\r\v') Decode the Ascii85 encoded :term:`bytes-like object` or ASCII string *b* and return the decoded :class:`bytes`. |