diff options
author | Jelle Zijlstra <jelle.zijlstra@gmail.com> | 2022-05-23 01:48:17 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-23 01:48:17 (GMT) |
commit | ac718d357af6aa42240e88add3ac348e1aebcfc2 (patch) | |
tree | ad1bd3ce2464f0f7c0c5fcd6f0f0ba994821ae0b /Doc/library/binascii.rst | |
parent | ea5918e932a441aef8c22acfdcfa6345ec32d1a8 (diff) | |
download | cpython-ac718d357af6aa42240e88add3ac348e1aebcfc2.zip cpython-ac718d357af6aa42240e88add3ac348e1aebcfc2.tar.gz cpython-ac718d357af6aa42240e88add3ac348e1aebcfc2.tar.bz2 |
binascii docs: strict_mode parameter is keyword-only (#93055)
See https://github.com/python/cpython/commit/35b98e38b6edd63153fc8e092f94cb20725dacc1
Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com>
Diffstat (limited to 'Doc/library/binascii.rst')
-rw-r--r-- | Doc/library/binascii.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/binascii.rst b/Doc/library/binascii.rst index 4417a5a..5a0815f 100644 --- a/Doc/library/binascii.rst +++ b/Doc/library/binascii.rst @@ -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. |