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

Victor Stinner webhook-mailer at python.org
Fri Jan 18 04:50:52 EST 2019


https://github.com/python/cpython/commit/36d9e9a4d5238d5a2f09679b6c51be66fbfc12c4
commit: 36d9e9a4d5238d5a2f09679b6c51be66fbfc12c4
branch: master
author: Dong-hee Na <donghee.na92 at gmail.com>
committer: Victor Stinner <vstinner at redhat.com>
date: 2019-01-18T10:50:47+01:00
summary:

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

files:
M Lib/threading.py

diff --git a/Lib/threading.py b/Lib/threading.py
index 7bc8a8573c72..000981f6d963 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



More information about the Python-checkins mailing list