From ab20f0e24857ef6cbdd810f8d8ed4d81ad3eb114 Mon Sep 17 00:00:00 2001 From: Dong-hee Na Date: Fri, 18 Jan 2019 08:19:18 +0900 Subject: [PATCH] bpo-35283: Update the docstring of threading.Thread.join method --- Lib/threading.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/threading.py b/Lib/threading.py index 7bc8a8573c7289..000981f6d9633f 100644 --- a/Lib/threading.py +++ b/Lib/threading.py @@ -1007,7 +1007,7 @@ def join(self, timeout=None): When the timeout argument is present and not None, it should be a floating point number specifying a timeout for the operation in seconds (or fractions thereof). As join() always returns None, you must call - isAlive() after join() to decide whether a timeout happened -- if the + is_alive() after join() to decide whether a timeout happened -- if the thread is still alive, the join() call timed out. When the timeout argument is not present or None, the operation will