diff options
author | Victor Stinner <vstinner@python.org> | 2020-09-23 21:21:19 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-23 21:21:19 (GMT) |
commit | 98c16c991d6e70a48f4280a7cd464d807bdd9f2b (patch) | |
tree | fce606ea267df285b5c1149fea97340389701b8b /Misc/NEWS.d/next/Library/2020-09-22-13-51-14.bpo-41833.6HVDjT.rst | |
parent | 2e4dd336e5b50fd30947fdecb605ddcd71f7f6f5 (diff) | |
download | cpython-98c16c991d6e70a48f4280a7cd464d807bdd9f2b.zip cpython-98c16c991d6e70a48f4280a7cd464d807bdd9f2b.tar.gz cpython-98c16c991d6e70a48f4280a7cd464d807bdd9f2b.tar.bz2 |
bpo-41833: threading.Thread now uses the target name (GH-22357)
Diffstat (limited to 'Misc/NEWS.d/next/Library/2020-09-22-13-51-14.bpo-41833.6HVDjT.rst')
-rw-r--r-- | Misc/NEWS.d/next/Library/2020-09-22-13-51-14.bpo-41833.6HVDjT.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2020-09-22-13-51-14.bpo-41833.6HVDjT.rst b/Misc/NEWS.d/next/Library/2020-09-22-13-51-14.bpo-41833.6HVDjT.rst new file mode 100644 index 0000000..abb3a07 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2020-09-22-13-51-14.bpo-41833.6HVDjT.rst @@ -0,0 +1,2 @@ +The :class:`threading.Thread` constructor now uses the target name if the +*target* argument is specified but the *name* argument is omitted. |