mirror of
https://github.com/python/cpython.git
synced 2026-01-06 15:32:22 +00:00
Fix missing "," in the documentation of Executor Objects (GH-30404)
This commit is contained in:
parent
7537f60087
commit
f404e26d74
1 changed files with 1 additions and 1 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue