From 12e7d10dfd28d4e26304e2c06b2e41c7418ec6f3 Mon Sep 17 00:00:00 2001 From: Irit Katriel Date: Tue, 11 May 2021 18:55:24 +0100 Subject: bpo-25821: Fix inaccuracy in threading.enumerate/is_alive documentation (#23192) --- Lib/threading.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Lib/threading.py') diff --git a/Lib/threading.py b/Lib/threading.py index 4dcf84715c4..fb70abd17af 100644 --- a/Lib/threading.py +++ b/Lib/threading.py @@ -1130,8 +1130,8 @@ class Thread: """Return whether the thread is alive. This method returns True just before the run() method starts until just - after the run() method terminates. The module function enumerate() - returns a list of all alive threads. + after the run() method terminates. See also the module function + enumerate(). """ assert self._initialized, "Thread.__init__() not called" -- cgit v1.2.3