summaryrefslogtreecommitdiffstats
path: root/Lib/concurrent/futures/process.py
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2019-06-15 12:02:34 (GMT)
committerGitHub <noreply@github.com>2019-06-15 12:02:34 (GMT)
commit687af44df8caa69312b65d1bd7bf1f05dd1e5778 (patch)
treeb91b83568d74ed4077f1f589677e45b638f73fd8 /Lib/concurrent/futures/process.py
parentb6ff2cd8c5bc1d4e4e61b9138436b507b31c6c7a (diff)
downloadcpython-687af44df8caa69312b65d1bd7bf1f05dd1e5778.zip
cpython-687af44df8caa69312b65d1bd7bf1f05dd1e5778.tar.gz
cpython-687af44df8caa69312b65d1bd7bf1f05dd1e5778.tar.bz2
Fix typo in Lib/concurrent/futures/thread.py (GH-13953)
(cherry picked from commit 552ace7498722f1add9f3782751b0d365f4c24c8) Co-authored-by: ubordignon <48903745+ubordignon@users.noreply.github.com>
Diffstat (limited to 'Lib/concurrent/futures/process.py')
-rw-r--r--Lib/concurrent/futures/process.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/concurrent/futures/process.py b/Lib/concurrent/futures/process.py
index dd14eae..2b2b78e 100644
--- a/Lib/concurrent/futures/process.py
+++ b/Lib/concurrent/futures/process.py
@@ -505,7 +505,7 @@ class ProcessPoolExecutor(_base.Executor):
worker processes will be created as the machine has processors.
mp_context: A multiprocessing context to launch the workers. This
object should provide SimpleQueue, Queue and Process.
- initializer: An callable used to initialize worker processes.
+ initializer: A callable used to initialize worker processes.
initargs: A tuple of arguments to pass to the initializer.
"""
_check_system_limits()