diff options
author | BarneyStratford <barney_stratford@fastmail.fm> | 2021-02-02 20:24:24 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-02 20:24:24 (GMT) |
commit | 01c4fddc4b2ac707f226e0bd92679588d2252cc4 (patch) | |
tree | f0861e313364e198913b4c14c519f603c1618342 /Misc | |
parent | 58fb156edda1a0e924a38bfed494bd06cb09c9a3 (diff) | |
download | cpython-01c4fddc4b2ac707f226e0bd92679588d2252cc4.zip cpython-01c4fddc4b2ac707f226e0bd92679588d2252cc4.tar.gz cpython-01c4fddc4b2ac707f226e0bd92679588d2252cc4.tar.bz2 |
bpo-41149: Fix a bug in threading that causes fals-y threads callables to fail to start. (GH-21201)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2020-06-28-16-13-02.bpo-41149.jiZWtJ.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2020-06-28-16-13-02.bpo-41149.jiZWtJ.rst b/Misc/NEWS.d/next/Library/2020-06-28-16-13-02.bpo-41149.jiZWtJ.rst new file mode 100644 index 0000000..abe0901 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2020-06-28-16-13-02.bpo-41149.jiZWtJ.rst @@ -0,0 +1 @@ +Allow executing callables that have a boolean value of ``False`` when passed to :class:`Threading.thread` as the target. Patch contributed by Barney Stratford. |