From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Mon, 23 May 2022 02:05:09 +0000 (-0700) Subject: binascii docs: strict_mode parameter is keyword-only (GH-93055) X-Git-Tag: v3.11.0b2~42 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=25334ca0820695b2bd3cbbb654e74dc1dbeb9997;p=thirdparty%2FPython%2Fcpython.git binascii docs: strict_mode parameter is keyword-only (GH-93055) See https://github.com/python/cpython/commit/35b98e38b6edd63153fc8e092f94cb20725dacc1 Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com> (cherry picked from commit ac718d357af6aa42240e88add3ac348e1aebcfc2) Co-authored-by: Jelle Zijlstra --- diff --git a/Doc/library/binascii.rst b/Doc/library/binascii.rst index 4417a5ac3825..5a0815faa38e 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.