diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2021-09-24 17:40:44 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-24 17:40:44 (GMT) |
commit | bfe26bbad787c124f0ce144cff1b513ef9d2dc9c (patch) | |
tree | c1d4eb1f2fcab730983ad592e54ae1d5bf730f05 | |
parent | 6587fc60d447603fb8c631d81d9bb379f53c39ab (diff) | |
download | cpython-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.rst | 2 |
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)``. |