From: Zachary Ware Date: Sat, 25 Oct 2025 23:29:46 +0000 (-0500) Subject: gh-124694: Add versionadded note to InterpreterPoolExecutor (#140468) X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=421a475c87771d46752c27def264e5c622a58427;p=thirdparty%2FPython%2Fcpython.git gh-124694: Add versionadded note to InterpreterPoolExecutor (#140468) --- diff --git a/Doc/library/concurrent.futures.rst b/Doc/library/concurrent.futures.rst index 6f8043e6cf77..c2e2f7f820f4 100644 --- a/Doc/library/concurrent.futures.rst +++ b/Doc/library/concurrent.futures.rst @@ -239,6 +239,8 @@ ThreadPoolExecutor Example InterpreterPoolExecutor ----------------------- +.. versionadded:: 3.14 + The :class:`InterpreterPoolExecutor` class uses a pool of interpreters to execute calls asynchronously. It is a :class:`ThreadPoolExecutor` subclass, which means each worker is running in its own thread.