Skip to content

Commit 7885918

Browse files
Apply suggestions from code review
Co-authored-by: Bénédikt Tran <10796600+picnixz@users.noreply.github.com>
1 parent 01df442 commit 7885918

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

Doc/library/binascii.rst

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,8 @@ The :mod:`binascii` module defines the following functions:
101101

102102
Invalid Ascii85 data will raise :exc:`binascii.Error`.
103103

104+
.. versionadded:: next
105+
104106

105107
.. function:: b2a_ascii85(data, /, *, fold_spaces=False, wrap=False, width=0, pad=False)
106108

@@ -119,6 +121,8 @@ The :mod:`binascii` module defines the following functions:
119121

120122
If *pad* is true, the input is padded to a multiple of 4 before encoding.
121123

124+
.. versionadded:: next
125+
122126

123127
.. function:: a2b_base85(string, /, *, strict_mode=False, z85=False)
124128

@@ -136,6 +140,8 @@ The :mod:`binascii` module defines the following functions:
136140
characters). Each group encodes 32 bits of binary data in the range from
137141
``0`` to ``2 ** 32 - 1``, inclusive.
138142

143+
.. versionadded:: next
144+
139145

140146
.. function:: b2a_base85(data, /, *, pad=False, newline=True, z85=False)
141147

@@ -149,6 +155,8 @@ The :mod:`binascii` module defines the following functions:
149155
If *z85* is true, the Z85 alphabet is used for conversion.
150156
See `Z85 specification <https://rfc.zeromq.org/spec/32/>`_ for more information.
151157

158+
.. versionadded:: next
159+
152160

153161
.. function:: a2b_qp(data, header=False)
154162

0 commit comments

Comments
 (0)