[Python-checkins] bpo-44019: Add missing comma to operator.call doc (GH-28551)

mdickinson webhook-mailer at python.org
Fri Sep 24 13:40:52 EDT 2021


https://github.com/python/cpython/commit/bfe26bbad787c124f0ce144cff1b513ef9d2dc9c
commit: bfe26bbad787c124f0ce144cff1b513ef9d2dc9c
branch: main
author: Terry Jan Reedy <tjreedy at udel.edu>
committer: mdickinson <dickinsm at gmail.com>
date: 2021-09-24T18:40:44+01:00
summary:

bpo-44019: Add missing comma to operator.call doc (GH-28551)

files:
M Doc/library/operator.rst

diff --git a/Doc/library/operator.rst b/Doc/library/operator.rst
index 146cabc52b054..35e9b49ea8bcc 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)``.



More information about the Python-checkins mailing list