docs: fix grammar in isolating-extensions.rst (#108037)

This commit is contained in:
David Lechner 2023-08-21 10:41:34 -05:00 committed by GitHub
parent 60942cccb1
commit 47022a079e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

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.