diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2022-06-17 22:31:42 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-17 22:31:42 (GMT) |
commit | 2b7fc1bfe6411cf1c0c10fae9078d09be7b38c95 (patch) | |
tree | ad485beaccad37f3e2f6a01bfc320ebd6fded53e /Misc | |
parent | 05d83a706c320792246cb4a06a1153c26475a578 (diff) | |
download | cpython-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.rst | 1 |
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. |