From: Terry Jan Reedy Date: Fri, 24 Sep 2021 17:40:44 +0000 (-0400) Subject: bpo-44019: Add missing comma to operator.call doc (GH-28551) X-Git-Tag: v3.11.0a1~78 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=bfe26bbad787c124f0ce144cff1b513ef9d2dc9c;p=thirdparty%2FPython%2Fcpython.git bpo-44019: Add missing comma to operator.call doc (GH-28551) --- diff --git a/Doc/library/operator.rst b/Doc/library/operator.rst index 146cabc52b05..35e9b49ea8bc 100644 --- a/Doc/library/operator.rst +++ b/Doc/library/operator.rst @@ -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)``.