https://github.com/python/cpython/commit/ff54fa78deeb5f803d1aecf3b9c18cf4d083f9f0 commit: ff54fa78deeb5f803d1aecf3b9c18cf4d083f9f0 branch: 3.14 author: Miss Islington (bot) <[email protected]> committer: StanFromIreland <[email protected]> date: 2026-09-01T17:38:39Z summary:
[3.14] Fix typos in the `concurrent.interpreters` docs (GH-156485) (#156791) (cherry picked from commit 76fefef9248c6e9578ac4125b3194b5fdab7902c) Co-authored-by: grayjk <[email protected]> files: M Doc/library/concurrent.interpreters.rst diff --git a/Doc/library/concurrent.interpreters.rst b/Doc/library/concurrent.interpreters.rst index ee3f0f04a06556..31b964b8317fdb 100644 --- a/Doc/library/concurrent.interpreters.rst +++ b/Doc/library/concurrent.interpreters.rst @@ -194,7 +194,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` @@ -277,7 +277,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: _______________________________________________ Python-checkins mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3//lists/python-checkins.python.org Member address: [email protected]
