From 0773c41b5687762b5f19b5815ccf2765df58d979 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joni=20K=C3=A4h=C3=A4r=C3=A4?= Date: Mon, 24 Sep 2018 15:31:01 +0300 Subject: [PATCH] refer to correct exception --- Doc/library/concurrent.futures.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/concurrent.futures.rst b/Doc/library/concurrent.futures.rst index 6934acc7f88e27..47ca6b38f84eee 100644 --- a/Doc/library/concurrent.futures.rst +++ b/Doc/library/concurrent.futures.rst @@ -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