8000 bpo-32604: Recommit "bpo-32604: PEP 554 for use in test suite (GH-19985)" by nanjekyejoannah · Pull Request #20611 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

bpo-32604: Recommit "bpo-32604: PEP 554 for use in test suite (GH-19985)" #20611

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 15 commits into from
Jun 10, 2020
Merged
Prev Previous commit
Next Next commit
Docs docs docs
  • Loading branch information
nanjekyejoannah committed May 7, 2020
commit 0decbeefeabef7f9167052133c89d6e6dc4a2ef4
6 changes: 3 additions & 3 deletions Doc/library/_interpreters.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

This module provides high-level tools for working with sub-interpreters,
such as creating them, running code in them, or sending data between them.
It is a wrapper around the low-level `_xxsubinterpreters` module.
It is a wrapper around the low-level ``__xxsubinterpreters`` module.

.. versionchanged:: added in 3.9

Expand All @@ -25,7 +25,7 @@ The Interpreter object represents a single interpreter.

.. method:: is_running()

Return `True` if the identified interpreter is running.
Return ``True`` if the identified interpreter is running.

.. method:: close()

Expand All @@ -35,7 +35,7 @@ The Interpreter object represents a single interpreter.
.. method:: run(self, src_str, /, *, channels=None):

Run the given source code in the interpreter. This blocks
the current thread until done. `channels` should be in
the current thread until done. ``channels`` should be in
the form : `(RecvChannel, SendChannel)`.

RecvChannel Objects
Expand Down
0