summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTerry Jan Reedy <tjreedy@udel.edu>2021-09-24 17:40:44 (GMT)
committerGitHub <noreply@github.com>2021-09-24 17:40:44 (GMT)
commitbfe26bbad787c124f0ce144cff1b513ef9d2dc9c (patch)
treec1d4eb1f2fcab730983ad592e54ae1d5bf730f05
parent6587fc60d447603fb8c631d81d9bb379f53c39ab (diff)
downloadcpython-bfe26bbad787c124f0ce144cff1b513ef9d2dc9c.zip
cpython-bfe26bbad787c124f0ce144cff1b513ef9d2dc9c.tar.gz
cpython-bfe26bbad787c124f0ce144cff1b513ef9d2dc9c.tar.bz2
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 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)``.