diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2023-10-11 21:11:41 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-11 21:11:41 (GMT) |
commit | 07471cda29fbd5cba90f5f9a8b221e43d8247bf0 (patch) | |
tree | b7df5f1a97321c4c11d7e9358ed437e0d3f42cc8 /Doc/library/binascii.rst | |
parent | fd061a9bbe5b46c295ebe0d76b4411d0345efc7d (diff) | |
download | cpython-07471cda29fbd5cba90f5f9a8b221e43d8247bf0.zip cpython-07471cda29fbd5cba90f5f9a8b221e43d8247bf0.tar.gz cpython-07471cda29fbd5cba90f5f9a8b221e43d8247bf0.tar.bz2 |
[3.11] gh-110631: Fix reST indentation in `Doc/library` (GH-110685) (#110737)
* [3.11] gh-110631: Fix reST indentation in `Doc/library` (GH-110685)
Fix wrong indentation in the Doc/library dir..
(cherry picked from commit bb7923f556537a463c403dc1097726d8a8e1a6f2)
Co-authored-by: Ezio Melotti <ezio.melotti@gmail.com>
* Fix merge glitch.
Diffstat (limited to 'Doc/library/binascii.rst')
-rw-r--r-- | Doc/library/binascii.rst | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/Doc/library/binascii.rst b/Doc/library/binascii.rst index 21960cb..d065fa3 100644 --- a/Doc/library/binascii.rst +++ b/Doc/library/binascii.rst @@ -58,10 +58,11 @@ The :mod:`binascii` module defines the following functions: data will raise :exc:`binascii.Error`. Valid base64: - * Conforms to :rfc:`3548`. - * Contains only characters from the base64 alphabet. - * Contains no excess data after padding (including excess padding, newlines, etc.). - * Does not start with a padding. + + * Conforms to :rfc:`3548`. + * Contains only characters from the base64 alphabet. + * Contains no excess data after padding (including excess padding, newlines, etc.). + * Does not start with a padding. .. versionchanged:: 3.11 Added the *strict_mode* parameter. |