@@ -75,7 +75,7 @@ The :mod:`!binascii` module defines the following functions:
7575 .. versionchanged :: 3.11
7676 Added the *strict_mode * parameter.
7777
78- .. versionchanged :: next
78+ .. versionchanged :: 3.15
7979 Added the *ignorechars * parameter.
8080
8181
@@ -122,7 +122,7 @@ The :mod:`!binascii` module defines the following functions:
122122
123123 Invalid Ascii85 data will raise :exc: `binascii.Error `.
124124
125- .. versionadded :: next
125+ .. versionadded :: 3.15
126126
127127
128128.. function :: b2a_ascii85(data, /, *, foldspaces=False, wrapcol=0, pad=False, adobe=False)
@@ -145,7 +145,7 @@ The :mod:`!binascii` module defines the following functions:
145145 *adobe * controls whether the encoded byte sequence is framed with ``<~ ``
146146 and ``~> ``, which is used by the Adobe implementation.
147147
148- .. versionadded :: next
148+ .. versionadded :: 3.15
149149
150150
151151.. function :: a2b_base85(string, /)
@@ -160,7 +160,7 @@ The :mod:`!binascii` module defines the following functions:
160160
161161 Invalid Base85 data will raise :exc: `binascii.Error `.
162162
163- .. versionadded :: next
163+ .. versionadded :: 3.15
164164
165165
166166.. function :: b2a_base85(data, /, *, pad=False)
@@ -171,7 +171,7 @@ The :mod:`!binascii` module defines the following functions:
171171 If *pad * is true, the input is padded with ``b'\0' `` so its length is a
172172 multiple of 4 bytes before encoding.
173173
174- .. versionadded :: next
174+ .. versionadded :: 3.15
175175
176176
177177.. function :: a2b_z85(string, /)
@@ -188,7 +188,7 @@ The :mod:`!binascii` module defines the following functions:
188188
189189 Invalid Z85 data will raise :exc: `binascii.Error `.
190190
191- .. versionadded :: next
191+ .. versionadded :: 3.15
192192
193193
194194.. function :: b2a_z85(data, /, *, pad=False)
@@ -201,7 +201,7 @@ The :mod:`!binascii` module defines the following functions:
201201
202202 See `Z85 specification <https://rfc.zeromq.org/spec/32/ >`_ for more information.
203203
204- .. versionadded :: next
204+ .. versionadded :: 3.15
205205
206206
207207.. function :: a2b_qp(data, header=False)
0 commit comments