Commit b60b4683 authored by Joni Kähärä's avatar Joni Kähärä Committed by Xiang Zhang

Fix wrong exception reference: BrokenThreadPool -> BrokenProcessPool (GH-9533)

parent 16fba623
......@@ -223,7 +223,7 @@ to a :class:`ProcessPoolExecutor` will result in deadlock.
*initializer* is an optional callable that is called at the start of
each worker process; *initargs* is a tuple of arguments passed to the
initializer. Should *initializer* raise an exception, all currently
pending jobs will raise a :exc:`~concurrent.futures.thread.BrokenThreadPool`,
pending jobs will raise a :exc:`~concurrent.futures.process.BrokenProcessPool`,
as well any attempt to submit more jobs to the pool.
.. versionchanged:: 3.3
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment