Commit 36d9e9a4 authored by Dong-hee Na's avatar Dong-hee Na Committed by Victor Stinner

bpo-35283: Update the docstring of threading.Thread.join method (GH-11596)

parent a902239f
...@@ -1007,7 +1007,7 @@ class Thread: ...@@ -1007,7 +1007,7 @@ class Thread:
When the timeout argument is present and not None, it should be a When the timeout argument is present and not None, it should be a
floating point number specifying a timeout for the operation in seconds floating point number specifying a timeout for the operation in seconds
(or fractions thereof). As join() always returns None, you must call (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. thread is still alive, the join() call timed out.
When the timeout argument is not present or None, the operation will When the timeout argument is not present or None, the operation will
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment