summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorelfstrom <elfstrom@users.noreply.github.com>2023-09-22 12:55:56 (GMT)
committerGitHub <noreply@github.com>2023-09-22 12:55:56 (GMT)
commit405b06375a8a4cdb08ff53afade09a8b66ec23d5 (patch)
treec39dfff42dd01b675e01f805f7632b1cf3648146 /Misc
parente94a2232eac07eb526ec93ef01699513cf9b0fa3 (diff)
downloadcpython-405b06375a8a4cdb08ff53afade09a8b66ec23d5.zip
cpython-405b06375a8a4cdb08ff53afade09a8b66ec23d5.tar.gz
cpython-405b06375a8a4cdb08ff53afade09a8b66ec23d5.tar.bz2
gh-105829: Fix concurrent.futures.ProcessPoolExecutor deadlock (#108513)
This fixes issue #105829, https://github.com/python/cpython/issues/105829 Co-authored-by: blurb-it[bot] <43283697+blurb-it[bot]@users.noreply.github.com> Co-authored-by: Antoine Pitrou <antoine@python.org> Co-authored-by: Chris Withers <chris@withers.org> Co-authored-by: Thomas Moreau <thomas.moreau.2010@gmail.com>
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2023-08-26-12-35-39.gh-issue-105829.kyYhWI.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2023-08-26-12-35-39.gh-issue-105829.kyYhWI.rst b/Misc/NEWS.d/next/Library/2023-08-26-12-35-39.gh-issue-105829.kyYhWI.rst
new file mode 100644
index 0000000..eaa2a5a
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2023-08-26-12-35-39.gh-issue-105829.kyYhWI.rst
@@ -0,0 +1 @@
+Fix concurrent.futures.ProcessPoolExecutor deadlock