diff options
author | David Lechner <david@pybricks.com> | 2023-08-21 15:41:34 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-21 15:41:34 (GMT) |
commit | 47022a079eb9d2a2af781abae3de4a71f80247c2 (patch) | |
tree | 604629d8bfe60decd4e04893280fec87a3e98b98 /Doc/howto | |
parent | 60942cccb18cfd43240c1a1eb5deab7b31fcb81c (diff) | |
download | cpython-47022a079eb9d2a2af781abae3de4a71f80247c2.zip cpython-47022a079eb9d2a2af781abae3de4a71f80247c2.tar.gz cpython-47022a079eb9d2a2af781abae3de4a71f80247c2.tar.bz2 |
docs: fix grammar in isolating-extensions.rst (#108037)
Diffstat (limited to 'Doc/howto')
-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. |