From 7e803ae736cc767cdc506650c8b853f6ea0e51b2 Mon Sep 17 00:00:00 2001 From: My-ABC <569817555@qq.com> Date: Sat, 23 May 2026 16:22:44 +0800 Subject: [PATCH] gh-150232: update Thread group parameter doc (GH-150283) (cherry picked from commit 82191c6d2cdacad6751262a40a44d2cd6d390977) Co-authored-by: My-ABC <569817555@qq.com> --- Doc/library/threading.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/threading.rst b/Doc/library/threading.rst index 7471f9bf507efd0..08d2d89f43d5272 100644 --- a/Doc/library/threading.rst +++ b/Doc/library/threading.rst @@ -512,7 +512,7 @@ since it is impossible to detect the termination of alien threads. This constructor should always be called with keyword arguments. Arguments are: - *group* should be ``None``; reserved for future extension when a + *group* must be ``None`` as it is reserved for future extension when a :class:`!ThreadGroup` class is implemented. *target* is the callable object to be invoked by the :meth:`run` method.