From ea7e129441dbaddc18663a136796af12c8ca6941 Mon Sep 17 00:00:00 2001 From: Zachary Ware Date: Sat, 25 Oct 2025 18:29:46 -0500 Subject: [PATCH] gh-124694: Add versionadded note to InterpreterPoolExecutor (GH-140468) (cherry picked from commit 421a475c87771d46752c27def264e5c622a58427) Co-authored-by: Zachary Ware --- Doc/library/concurrent.futures.rst | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Doc/library/concurrent.futures.rst b/Doc/library/concurrent.futures.rst index 6f8043e6cf7735..c2e2f7f820f4ef 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.