]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-44019: Add missing comma to operator.call doc (GH-28551)
authorTerry Jan Reedy <tjreedy@udel.edu>
Fri, 24 Sep 2021 17:40:44 +0000 (13:40 -0400)
committerGitHub <noreply@github.com>
Fri, 24 Sep 2021 17:40:44 +0000 (18:40 +0100)
Doc/library/operator.rst

index 146cabc52b054e10251ec8736979c10a14506943..35e9b49ea8bccae52e3a270ba2d9b0b94903cbfb 100644 (file)
@@ -253,7 +253,7 @@ Operations which work with sequences (some of them with mappings too) include:
 
 The following operation works with callables:
 
-.. function:: call(obj, / *args, **kwargs)
+.. function:: call(obj, /, *args, **kwargs)
               __call__(obj, /, *args, **kwargs)
 
    Return ``obj(*args, **kwargs)``.