[Python-checkins] binascii docs: strict_mode parameter is keyword-only (#93055)

JelleZijlstra webhook-mailer at python.org
Sun May 22 21:48:39 EDT 2022


https://github.com/python/cpython/commit/ac718d357af6aa42240e88add3ac348e1aebcfc2
commit: ac718d357af6aa42240e88add3ac348e1aebcfc2
branch: main
author: Jelle Zijlstra <jelle.zijlstra at gmail.com>
committer: JelleZijlstra <jelle.zijlstra at gmail.com>
date: 2022-05-22T18:48:17-07:00
summary:

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 at users.noreply.github.com>

files:
M Doc/library/binascii.rst

diff --git a/Doc/library/binascii.rst b/Doc/library/binascii.rst
index 4417a5ac38251..5a0815faa38ea 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.



More information about the Python-checkins mailing list