[Python-checkins] docs: fix grammar in isolating-extensions.rst (#108037)

vstinner webhook-mailer at python.org
Mon Aug 21 11:41:38 EDT 2023


https://github.com/python/cpython/commit/47022a079eb9d2a2af781abae3de4a71f80247c2
commit: 47022a079eb9d2a2af781abae3de4a71f80247c2
branch: main
author: David Lechner <david at pybricks.com>
committer: vstinner <vstinner at python.org>
date: 2023-08-21T15:41:34Z
summary:

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

files:
M Doc/howto/isolating-extensions.rst

diff --git a/Doc/howto/isolating-extensions.rst b/Doc/howto/isolating-extensions.rst
index 2551fbe87b5c2..8f3787f2d2f14 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.



More information about the Python-checkins mailing list