mirror of https://github.com/python/cpython
Fix missing "," in the documentation of Executor Objects (GH-30404)
This commit is contained in:
parent
7537f60087
commit
f404e26d74
|
@ -30,7 +30,7 @@ Executor Objects
|
|||
|
||||
.. method:: submit(fn, /, *args, **kwargs)
|
||||
|
||||
Schedules the callable, *fn*, to be executed as ``fn(*args **kwargs)``
|
||||
Schedules the callable, *fn*, to be executed as ``fn(*args, **kwargs)``
|
||||
and returns a :class:`Future` object representing the execution of the
|
||||
callable. ::
|
||||
|
||||
|
|
Loading…
Reference in New Issue