This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: multiprocessing.dummy.Process lacks daemon parameter
Type: behavior Stage: patch review
Components: Versions:
process
Status: open Resolution:
Dependencies: Superseder:
Assigned To: Nosy List: davin, moi90, pitrou
Priority: normal Keywords: patch

Created on 2020-08-13 21:08 by moi90, last changed 2022-04-11 14:59 by admin.

Pull Requests
URL Status Linked Edit
PR 21869 open moi90, 2020-08-13 21:09
Messages (2)
msg375347 - (view) Author: Martin (moi90) * Date: 2020-08-13 21:08
Although multiprocessing.Process has a `daemon` parameter, multiprocessing.dummy.Process doesn't.

As multiprocessing.dummy is meant to replicate the API of multiprocessing and the daemon parameter is readily available in threading.Thread, it should also be available in multiprocessing.dummy.Process.
msg405894 - (view) Author: Martin (moi90) * Date: 2021-11-07 08:00
Could someone have a look at my pull request? I have trouble with the tests.
History
Date User Action Args
2022-04-11 14:59:34adminsetgithub: 85716
2021-11-07 08:00:41moi90setmessages: + msg405894
2021-11-07 07:25:27moi90setnosy: + pitrou, davin
type: behavior
2020-08-13 21:09:41moi90setkeywords: + patch
stage: patch review
pull_requests: + pull_request20993
2020-08-13 21:08:33moi90create