binascii docs: strict_mode parameter is keyword-only (GH-93055)

See 35b98e38b6

Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com>
(cherry picked from commit ac718d357a)

Co-authored-by: Jelle Zijlstra <jelle.zijlstra@gmail.com>
This commit is contained in:
Miss Islington (bot) 2022-05-22 19:05:09 -07:00 committed by GitHub
parent a86ad12399
commit 25334ca082
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -49,7 +49,7 @@ The :mod:`binascii` module defines the following functions:
Added the *backtick* parameter.
.. function:: a2b_base64(string, strict_mode=False)
.. function:: a2b_base64(string, /, *, strict_mode=False)
Convert a block of base64 data back to binary and return the binary data. More
than one line may be passed at a time.