[Python-checkins] replace 'sequencial argument' by 'positional' in doc (GH-12925)

Miss Islington (bot) webhook-mailer at python.org
Tue Apr 23 09:08:34 EDT 2019


https://github.com/python/cpython/commit/e64d21b187871c35fb2a1d68b6a591ec26d86722
commit: e64d21b187871c35fb2a1d68b6a591ec26d86722
branch: 3.7
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: GitHub <noreply at github.com>
date: 2019-04-23T06:06:57-07:00
summary:

replace 'sequencial argument' by 'positional' in doc (GH-12925)

(cherry picked from commit 29d018aa63b72161cfc67602dc3dbd386272da64)

Co-authored-by: Mathieu Dupuy <deronnax at users.noreply.github.com>

files:
M Doc/library/threading.rst

diff --git a/Doc/library/threading.rst b/Doc/library/threading.rst
index d7dbcb107dda..c58a6ad75d08 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)



More information about the Python-checkins mailing list