Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Doc/library/concurrent.interpreters.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Expand Down Expand Up @@ -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:
Expand Down
Loading