diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2021-09-24 13:40:44 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-24 18:40:44 +0100 |
commit | bfe26bbad787c124f0ce144cff1b513ef9d2dc9c (patch) | |
tree | c1d4eb1f2fcab730983ad592e54ae1d5bf730f05 | |
parent | bpo-44019: Implement operator.call(). (GH-27888) (diff) | |
download | cpython-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.rst | 2 |
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)``. |