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

miss-islington webhook-mailer at python.org
Sun May 22 22:05:13 EDT 2022


https://github.com/python/cpython/commit/25334ca0820695b2bd3cbbb654e74dc1dbeb9997
commit: 25334ca0820695b2bd3cbbb654e74dc1dbeb9997
branch: 3.11
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: miss-islington <31488909+miss-islington at users.noreply.github.com>
date: 2022-05-22T19:05:09-07:00
summary:

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 at users.noreply.github.com>
(cherry picked from commit ac718d357af6aa42240e88add3ac348e1aebcfc2)

Co-authored-by: Jelle Zijlstra <jelle.zijlstra at gmail.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