summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorIllia Volochii <illia.volochii@gmail.com>2021-07-01 14:46:49 (GMT)
committerGitHub <noreply@github.com>2021-07-01 14:46:49 (GMT)
commitddd5f36971e2ffe20cc3f4b408425c847d168646 (patch)
tree19ac45289e1129ba41896aee92c54ecf27927216 /Misc
parenta1092f62492a3fcd6195bea94eccf8d5a300acb1 (diff)
downloadcpython-ddd5f36971e2ffe20cc3f4b408425c847d168646.zip
cpython-ddd5f36971e2ffe20cc3f4b408425c847d168646.tar.gz
cpython-ddd5f36971e2ffe20cc3f4b408425c847d168646.tar.bz2
bpo-43234: Prohibit non-ThreadPoolExecutor in loop.set_default_executor (GH-24540)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2021-02-15-22-14-31.bpo-43234.F-vKAT.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2021-02-15-22-14-31.bpo-43234.F-vKAT.rst b/Misc/NEWS.d/next/Library/2021-02-15-22-14-31.bpo-43234.F-vKAT.rst
new file mode 100644
index 0000000..7f195cc
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2021-02-15-22-14-31.bpo-43234.F-vKAT.rst
@@ -0,0 +1,3 @@
+Prohibit passing non-:class:`concurrent.futures.ThreadPoolExecutor`
+executors to :meth:`loop.set_default_executor` following a deprecation in
+Python 3.8. Patch by Illia Volochii.