[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 47022a079e)

Co-authored-by: David Lechner <david@pybricks.com>
This commit is contained in:
Miss Islington (bot) 2023-08-21 12:40:08 -07:00 committed by GitHub
parent bc97eb76bb
commit a27f18a382
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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.