From bfe26bbad787c124f0ce144cff1b513ef9d2dc9c Mon Sep 17 00:00:00 2001 From: Terry Jan Reedy Date: Fri, 24 Sep 2021 13:40:44 -0400 Subject: bpo-44019: Add missing comma to operator.call doc (GH-28551) --- Doc/library/operator.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/operator.rst b/Doc/library/operator.rst index 146cabc..35e9b49 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)``. -- cgit v0.12