diff options
author | Dong-hee Na <donghee.na@python.org> | 2023-08-15 13:58:12 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-15 13:58:12 (GMT) |
commit | 6515ec3d3d5acd3d0b99c88794bdec09f0831e5b (patch) | |
tree | 8fb756fdfeafbbc5cbbb388ff17dd86a6adcf3f4 /Misc | |
parent | d66bc9e8a7a8d6774d912a4b9d151885c4d8de1d (diff) | |
download | cpython-6515ec3d3d5acd3d0b99c88794bdec09f0831e5b.zip cpython-6515ec3d3d5acd3d0b99c88794bdec09f0831e5b.tar.gz cpython-6515ec3d3d5acd3d0b99c88794bdec09f0831e5b.tar.bz2 |
gh-107963: Fix set_forkserver_preload to check the type of given list (#107965)
gh-107963: Fix set_forkserver_preload to check the type of given list
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2023-08-15-18-20-00.gh-issue-107963.20g5BG.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2023-08-15-18-20-00.gh-issue-107963.20g5BG.rst b/Misc/NEWS.d/next/Library/2023-08-15-18-20-00.gh-issue-107963.20g5BG.rst new file mode 100644 index 0000000..3a73b2d --- /dev/null +++ b/Misc/NEWS.d/next/Library/2023-08-15-18-20-00.gh-issue-107963.20g5BG.rst @@ -0,0 +1,2 @@ +Fix :func:`multiprocessing.set_forkserver_preload` to check the given list +of modules names. Patch by Dong-hee Na. |