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

See 35b98e38b6

Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com>
This commit is contained in:
Jelle Zijlstra 2022-05-22 18:48:17 -07:00 committed by GitHub
parent ea5918e932
commit ac718d357a
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.