From ec02eda165b7dc77b0facf2d0c05c72692b9eb1e Mon Sep 17 00:00:00 2001 From: user <2437532+grayjk@users.noreply.github.com> Date: Thu, 27 Aug 2026 13:38:48 -0400 Subject: [PATCH 1/2] fix typo in Interpreter.call docs --- Doc/library/concurrent.interpreters.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/concurrent.interpreters.rst b/Doc/library/concurrent.interpreters.rst index 24e9eaea5cad4b3..83b404b344eaf8d 100644 --- a/Doc/library/concurrent.interpreters.rst +++ b/Doc/library/concurrent.interpreters.rst @@ -274,7 +274,7 @@ Interpreter objects .. method:: call(callable, /, *args, **kwargs) - Return the result of calling running the given function in the + Return the result of running the given function in the interpreter (in the current thread). .. _interp-call-in-thread: From 0c58b5707abc547a973ffe407ff40b2349e7955d Mon Sep 17 00:00:00 2001 From: user <2437532+grayjk@users.noreply.github.com> Date: Tue, 1 Sep 2026 12:09:09 -0400 Subject: [PATCH 2/2] plural --- Doc/library/concurrent.interpreters.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/concurrent.interpreters.rst b/Doc/library/concurrent.interpreters.rst index 83b404b344eaf8d..2c509ab13a6acfd 100644 --- a/Doc/library/concurrent.interpreters.rst +++ b/Doc/library/concurrent.interpreters.rst @@ -191,7 +191,7 @@ objects are either directly shared or copied efficiently. For example: * :class:`float` * :class:`tuple` (of similarly supported objects) -There is a small number of Python types that actually share mutable +There are a small number of Python types that actually share mutable data between interpreters: * :class:`memoryview`