From: David Brochart Date: Tue, 8 Apr 2025 08:43:11 +0000 (+0200) Subject: Fixed a typo in the documentation (#132005) X-Git-Tag: v3.14.0a7~7 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=297e05932d1d60eedf0b492552cf9ea1ab10672b;p=thirdparty%2FPython%2Fcpython.git Fixed a typo in the documentation (#132005) --- diff --git a/Doc/library/concurrent.futures.rst b/Doc/library/concurrent.futures.rst index a623c4cc3079..7efae9e628b8 100644 --- a/Doc/library/concurrent.futures.rst +++ b/Doc/library/concurrent.futures.rst @@ -298,7 +298,7 @@ the bytes over a shared :mod:`socket ` or The optional *initializer* and *initargs* arguments have the same meaning as for :class:`!ThreadPoolExecutor`: the initializer is run - when each worker is created, though in this case it is run.in + when each worker is created, though in this case it is run in the worker's interpreter. The executor serializes the *initializer* and *initargs* using :mod:`pickle` when sending them to the worker's interpreter.