summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2016-12-10 16:13:16 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2016-12-10 16:13:16 (GMT)
commitcd2a201e5bb33c9b44401a91e10189be87885efe (patch)
tree9dee87e322d960ada1c61a24aabe9408ea3e9db6 /Misc
parent7a44783b425ed810cf38e48b43fb3800e2995fa1 (diff)
downloadcpython-cd2a201e5bb33c9b44401a91e10189be87885efe.zip
cpython-cd2a201e5bb33c9b44401a91e10189be87885efe.tar.gz
cpython-cd2a201e5bb33c9b44401a91e10189be87885efe.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 a285005..80bb03e 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -124,6 +124,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.