[Python-checkins] Fix missing ", " in the documentation of Executor Objects (GH-30404)

Mariatta webhook-mailer at python.org
Tue Jan 4 14:16:06 EST 2022


https://github.com/python/cpython/commit/f902d88be3aa42e03119b15469493e5cc816b784
commit: f902d88be3aa42e03119b15469493e5cc816b784
branch: 3.9
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: Mariatta <Mariatta at users.noreply.github.com>
date: 2022-01-04T11:15:56-08:00
summary:

Fix missing "," in the documentation of Executor Objects (GH-30404)

(cherry picked from commit f404e26d749c85eef7b5be836375260855050ee3)

Co-authored-by: Philipp Claßen <philipp.classen at posteo.de>

Co-authored-by: Philipp Claßen <philipp.classen at posteo.de>

files:
M Doc/library/concurrent.futures.rst

diff --git a/Doc/library/concurrent.futures.rst b/Doc/library/concurrent.futures.rst
index f62b5e3546304..70a17a23119c1 100644
--- a/Doc/library/concurrent.futures.rst
+++ b/Doc/library/concurrent.futures.rst
@@ -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. ::
 



More information about the Python-checkins mailing list