diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2023-08-21 19:40:08 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-21 19:40:08 (GMT) |
commit | a27f18a3824365173c4102179ecd28aab72690f8 (patch) | |
tree | 7a79154add60c65cef26eb28b4a25f736633de76 | |
parent | bc97eb76bb674d76b907e7031f1b7ea11b68121b (diff) | |
download | cpython-a27f18a3824365173c4102179ecd28aab72690f8.zip cpython-a27f18a3824365173c4102179ecd28aab72690f8.tar.gz cpython-a27f18a3824365173c4102179ecd28aab72690f8.tar.bz2 |
[3.12] docs: fix grammar in isolating-extensions.rst (GH-108037) (#108218)
docs: fix grammar in isolating-extensions.rst (GH-108037)
(cherry picked from commit 47022a079eb9d2a2af781abae3de4a71f80247c2)
Co-authored-by: David Lechner <david@pybricks.com>
-rw-r--r-- | Doc/howto/isolating-extensions.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/howto/isolating-extensions.rst b/Doc/howto/isolating-extensions.rst index 2551fbe..8f3787f 100644 --- a/Doc/howto/isolating-extensions.rst +++ b/Doc/howto/isolating-extensions.rst @@ -64,7 +64,7 @@ Enter Per-Module State Instead of focusing on per-interpreter state, Python's C API is evolving to better support the more granular *per-module* state. -This means that C-level data is be attached to a *module object*. +This means that C-level data should be attached to a *module object*. Each interpreter creates its own module object, keeping the data separate. For testing the isolation, multiple module objects corresponding to a single extension can even be loaded in a single interpreter. |