summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2022-06-17 22:31:42 (GMT)
committerGitHub <noreply@github.com>2022-06-17 22:31:42 (GMT)
commit2b7fc1bfe6411cf1c0c10fae9078d09be7b38c95 (patch)
treead485beaccad37f3e2f6a01bfc320ebd6fded53e /Misc
parent05d83a706c320792246cb4a06a1153c26475a578 (diff)
downloadcpython-2b7fc1bfe6411cf1c0c10fae9078d09be7b38c95.zip
cpython-2b7fc1bfe6411cf1c0c10fae9078d09be7b38c95.tar.gz
cpython-2b7fc1bfe6411cf1c0c10fae9078d09be7b38c95.tar.bz2
GH-83658: make multiprocessing.Pool raise an exception if maxtasksperchild is not None or a positive int (GH-93364) (GH-93923)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2022-05-30-21-42-50.gh-issue-83658.01Ntx0.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2022-05-30-21-42-50.gh-issue-83658.01Ntx0.rst b/Misc/NEWS.d/next/Library/2022-05-30-21-42-50.gh-issue-83658.01Ntx0.rst
new file mode 100644
index 0000000..a187309
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2022-05-30-21-42-50.gh-issue-83658.01Ntx0.rst
@@ -0,0 +1 @@
+Make :class:`multiprocessing.Pool` raise an exception if ``maxtasksperchild`` is not ``None`` or a positive int.