Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 36d9e9a

Browse files
corona10vstinner
authored andcommitted
bpo-35283: Update the docstring of threading.Thread.join method (GH-11596)
1 parent a902239 commit 36d9e9a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Lib/threading.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1007,7 +1007,7 @@ def join(self, timeout=None):
10071007
When the timeout argument is present and not None, it should be a
10081008
floating point number specifying a timeout for the operation in seconds
10091009
(or fractions thereof). As join() always returns None, you must call
1010-
isAlive() after join() to decide whether a timeout happened -- if the
1010+
is_alive() after join() to decide whether a timeout happened -- if the
10111011
thread is still alive, the join() call timed out.
10121012
10131013
When the timeout argument is not present or None, the operation will

0 commit comments

Comments
 (0)