10000 bpo-45735: Promise the long-time truth that `args=list` works by CharlieZhao95 · Pull Request #30982 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

bpo-45735: Promise the long-time truth that args=list works #30982

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 15 commits into from
Feb 26, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Change arguments description in Thread.
  • Loading branch information
CharlieZhao95 committed Jan 27, 2022
commit b6231da6b4494519cf5da320356ca2a16b3dc389
2 changes: 1 addition & 1 deletion Doc/library/threading.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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 ``{}``.
Expand Down
0