summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2016-12-10 16:16:17 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2016-12-10 16:16:17 (GMT)
commitebb39bcc048b33d529a64f517ccee1c172ff8b07 (patch)
treee9c5c42ccd7271e9d67506797417b06066d90f2a /Misc
parent13f1c331a5dd5b4ff3b1e4c9e47d6d3ae75e0f8f (diff)
parentcd2a201e5bb33c9b44401a91e10189be87885efe (diff)
downloadcpython-ebb39bcc048b33d529a64f517ccee1c172ff8b07.zip
cpython-ebb39bcc048b33d529a64f517ccee1c172ff8b07.tar.gz
cpython-ebb39bcc048b33d529a64f517ccee1c172ff8b07.tar.bz2
Issue #28779: multiprocessing.set_forkserver_preload() would crash the forkserver process if a preloaded module instantiated some multiprocessing objects such as locks.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 587c4d2..3de5be7 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -22,6 +22,10 @@ Core and Builtins
Library
-------
+- Issue #28779: multiprocessing.set_forkserver_preload() would crash the
+ forkserver process if a preloaded module instantiated some
+ multiprocessing objects such as locks.
+
- Issue #28847: dbm.dumb now supports reading read-only files and no longer
writes the index file when it is not changed.