summaryrefslogtreecommitdiffstats
path: root/Doc/library/binascii.rst
diff options
context:
space:
mode:
Diffstat (limited to 'Doc/library/binascii.rst')
-rw-r--r--Doc/library/binascii.rst9
1 files changed, 5 insertions, 4 deletions
diff --git a/Doc/library/binascii.rst b/Doc/library/binascii.rst
index e9f6f0e..39fabb5 100644
--- a/Doc/library/binascii.rst
+++ b/Doc/library/binascii.rst
@@ -57,10 +57,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.