]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
docs: fix grammar in isolating-extensions.rst (#108037)
authorDavid Lechner <david@pybricks.com>
Mon, 21 Aug 2023 15:41:34 +0000 (10:41 -0500)
committerGitHub <noreply@github.com>
Mon, 21 Aug 2023 15:41:34 +0000 (15:41 +0000)
Doc/howto/isolating-extensions.rst

index 2551fbe87b5c2a4388b709d5ce6155ce8121f1f6..8f3787f2d2f145543e0973ee793d82b72910708a 100644 (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.