]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
binascii docs: strict_mode parameter is keyword-only (#93055)
authorJelle Zijlstra <jelle.zijlstra@gmail.com>
Mon, 23 May 2022 01:48:17 +0000 (18:48 -0700)
committerGitHub <noreply@github.com>
Mon, 23 May 2022 01:48:17 +0000 (18:48 -0700)
See https://github.com/python/cpython/commit/35b98e38b6edd63153fc8e092f94cb20725dacc1

Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com>
Doc/library/binascii.rst

index 4417a5ac38251ea7f22ac633e6311c5a80384244..5a0815faa38eac21f167e4d46e1bbe6014d46c9b 100644 (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.