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

This commit is contained in:
Terry Jan Reedy 2021-09-24 13:40:44 -04:00 committed by GitHub
parent 6587fc60d4
commit bfe26bbad7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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)``.