diff options
author | Adam Turner <9087854+AA-Turner@users.noreply.github.com> | 2022-06-21 15:04:46 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-21 15:04:46 (GMT) |
commit | 0efe3a1636c143fe0694a8e4d25d6eae19e0d618 (patch) | |
tree | 6f5b27302956979ea868743410c02bb87c2ed086 /Doc/library/base64.rst | |
parent | 6f8875eba38b08c802905635759b5f905e3a415c (diff) | |
download | cpython-0efe3a1636c143fe0694a8e4d25d6eae19e0d618.zip cpython-0efe3a1636c143fe0694a8e4d25d6eae19e0d618.tar.gz cpython-0efe3a1636c143fe0694a8e4d25d6eae19e0d618.tar.bz2 |
gh-86986: Drop compatibility support for Sphinx 2 (GH-93737)
* Revert "bpo-42843: Keep Sphinx 1.8 and Sphinx 2 compatibility (GH-24282)"
This reverts commit 5c1f15b4b1024cbf0acc85832f0c623d1a4605fd
* Revert "bpo-42579: Make workaround for various versions of Sphinx more robust (GH-23662)"
This reverts commit b63a620014b67a6e63d10783149c41baaf59def8.
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 4ff038c..a02ba73 100644 --- a/Doc/library/base64.rst +++ b/Doc/library/base64.rst @@ -201,7 +201,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`. |