From 956debac30ee9c04691277e1add511fc3841a24c Mon Sep 17 00:00:00 2001 From: Anandesh Sharma Date: Fri, 27 Feb 2026 04:13:23 +0530 Subject: [PATCH] Fix missing punctuation in concurrent.interpreters docs Add missing periods to a sentence in the module introduction. The sentence about threading was missing its ending period after the :mod: reference and at the end of the sentence. Co-Authored-By: Claude Opus 4.6 --- Doc/library/concurrent.interpreters.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/concurrent.interpreters.rst b/Doc/library/concurrent.interpreters.rst index a7b115e5f6307d..8f28ee09516580 100644 --- a/Doc/library/concurrent.interpreters.rst +++ b/Doc/library/concurrent.interpreters.rst @@ -21,7 +21,7 @@ thread) and calling a function in that execution context. For concurrency, interpreters themselves (and this module) don't provide much more than isolation, which on its own isn't useful. Actual concurrency is available separately through -:mod:`threads ` See `below `_ +:mod:`threads `. See `below `_. .. seealso::