]> granicus.if.org Git - python/commitdiff
bpo-35283: Update the docstring of threading.Thread.join method (GH-11596)
authorDong-hee Na <donghee.na92@gmail.com>
Fri, 18 Jan 2019 09:50:47 +0000 (18:50 +0900)
committerVictor Stinner <vstinner@redhat.com>
Fri, 18 Jan 2019 09:50:47 +0000 (10:50 +0100)
Lib/threading.py

index 7bc8a8573c7289abedcc4c8ea82ea034df2ea437..000981f6d9633f95d28189abe965cccbc62b31fc 100644 (file)
@@ -1007,7 +1007,7 @@ class Thread:
         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