From c195656f1b8336577e24ce415bb51e57df671795 Mon Sep 17 00:00:00 2001 From: Raymond Hettinger Date: Fri, 5 Nov 2021 23:58:58 -0500 Subject: [PATCH] bpo-45735: Promised that lists can be used for *args*. --- Doc/library/threading.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/threading.rst b/Doc/library/threading.rst index 8c7664328a49df..c0582ea129c2c4 100644 --- a/Doc/library/threading.rst +++ b/Doc/library/threading.rst @@ -314,7 +314,7 @@ since it is impossible to detect the termination of alien threads. or "Thread-*N* (target)" where "target" is ``target.__name__`` if the *target* argument is specified. - *args* is the argument tuple for the target invocation. Defaults to ``()``. + *args* is a list or tuple of arguments for the target invocation. Defaults to ``()``. *kwargs* is a dictionary of keyword arguments for the target invocation. Defaults to ``{}``.