summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2016-12-10 16:19:21 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2016-12-10 16:19:21 (GMT)
commit5c7198d46417cad8ca031b3d6a9d97c2ee6a1807 (patch)
tree5e74dd470decd388f0f125e63dceda99dc174d2e /Misc/NEWS
parentc1a26a2e473efd3ff7a9cca5be75959384c41b8c (diff)
parentebb39bcc048b33d529a64f517ccee1c172ff8b07 (diff)
downloadcpython-5c7198d46417cad8ca031b3d6a9d97c2ee6a1807.zip
cpython-5c7198d46417cad8ca031b3d6a9d97c2ee6a1807.tar.gz
cpython-5c7198d46417cad8ca031b3d6a9d97c2ee6a1807.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/NEWS')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 48ce4bd..7358713 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -171,6 +171,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 #26937: The chown() method of the tarfile.TarFile class does not fail
now when the grp module cannot be imported, as for example on Android
platforms.