aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTerry Jan Reedy <tjreedy@udel.edu>2021-09-24 13:40:44 -0400
committerGitHub <noreply@github.com>2021-09-24 18:40:44 +0100
commitbfe26bbad787c124f0ce144cff1b513ef9d2dc9c (patch)
treec1d4eb1f2fcab730983ad592e54ae1d5bf730f05
parentbpo-44019: Implement operator.call(). (GH-27888) (diff)
downloadcpython-bfe26bbad787c124f0ce144cff1b513ef9d2dc9c.tar.gz
cpython-bfe26bbad787c124f0ce144cff1b513ef9d2dc9c.tar.bz2
cpython-bfe26bbad787c124f0ce144cff1b513ef9d2dc9c.zip
bpo-44019: Add missing comma to operator.call doc (GH-28551)
-rw-r--r--Doc/library/operator.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/operator.rst b/Doc/library/operator.rst
index 146cabc52b0..35e9b49ea8b 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)``.