diff options
Diffstat (limited to 'Doc/library/concurrent.futures.rst')
-rw-r--r-- | Doc/library/concurrent.futures.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/concurrent.futures.rst b/Doc/library/concurrent.futures.rst index 99703ff..8efbf0a 100644 --- a/Doc/library/concurrent.futures.rst +++ b/Doc/library/concurrent.futures.rst @@ -257,7 +257,7 @@ to a :class:`ProcessPoolExecutor` will result in deadlock. replaced with a fresh worker process. By default *max_tasks_per_child* is ``None`` which means worker processes will live as long as the pool. When a max is specified, the "spawn" multiprocessing start method will be used by - default in absense of a *mp_context* parameter. This feature is incompatible + default in absence of a *mp_context* parameter. This feature is incompatible with the "fork" start method. .. versionchanged:: 3.3 |