From: Arne de Laat Date: Wed, 30 Nov 2022 15:27:28 +0000 (+0100) Subject: Fix typo in exception message in `multiprocessing.pool` (#99900) X-Git-Tag: v3.12.0a3~46 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a694b8222e8b0683682958222699953379fd2d48;p=thirdparty%2FPython%2Fcpython.git Fix typo in exception message in `multiprocessing.pool` (#99900) --- diff --git a/Lib/multiprocessing/pool.py b/Lib/multiprocessing/pool.py index 961d7e599184..4f5d88cb975c 100644 --- a/Lib/multiprocessing/pool.py +++ b/Lib/multiprocessing/pool.py @@ -696,7 +696,7 @@ class Pool(object): if (not result_handler.is_alive()) and (len(cache) != 0): raise AssertionError( - "Cannot have cache with result_hander not alive") + "Cannot have cache with result_handler not alive") result_handler._state = TERMINATE change_notifier.put(None)