Skip to content

Commit bfe26bb

Browse files
authored
bpo-44019: Add missing comma to operator.call doc (GH-28551)
1 parent 6587fc6 commit bfe26bb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Doc/library/operator.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ Operations which work with sequences (some of them with mappings too) include:
253253

254254
The following operation works with callables:
255255

256-
.. function:: call(obj, / *args, **kwargs)
256+
.. function:: call(obj, /, *args, **kwargs)
257257
__call__(obj, /, *args, **kwargs)
258258
259259
Return ``obj(*args, **kwargs)``.

0 commit comments

Comments
 (0)