diff options
author | Mathieu Dupuy <deronnax@users.noreply.github.com> | 2019-04-23 13:01:09 (GMT) |
---|---|---|
committer | Inada Naoki <songofacandy@gmail.com> | 2019-04-23 13:01:09 (GMT) |
commit | 29d018aa63b72161cfc67602dc3dbd386272da64 (patch) | |
tree | 8aed7e107592c9dded3db275cdc955f4d4cc1185 /Doc/library/threading.rst | |
parent | 359bd4f61b9e1493081f4f67882554247b53926a (diff) | |
download | cpython-29d018aa63b72161cfc67602dc3dbd386272da64.zip cpython-29d018aa63b72161cfc67602dc3dbd386272da64.tar.gz cpython-29d018aa63b72161cfc67602dc3dbd386272da64.tar.bz2 |
replace 'sequencial argument' by 'positional' in doc (GH-12925)
Diffstat (limited to 'Doc/library/threading.rst')
-rw-r--r-- | Doc/library/threading.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/threading.rst b/Doc/library/threading.rst index d7dbcb1..c58a6ad 100644 --- a/Doc/library/threading.rst +++ b/Doc/library/threading.rst @@ -250,7 +250,7 @@ since it is impossible to detect the termination of alien threads. You may override this method in a subclass. The standard :meth:`run` method invokes the callable object passed to the object's constructor as - the *target* argument, if any, with sequential and keyword arguments taken + the *target* argument, if any, with positional and keyword arguments taken from the *args* and *kwargs* arguments, respectively. .. method:: join(timeout=None) |