summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <pitrou@free.fr>2017-11-03 13:31:38 (GMT)
committerGitHub <noreply@github.com>2017-11-03 13:31:38 (GMT)
commitcbe1756e3ecefc0e24a5d0a4b8663db9b6d0cc52 (patch)
treeb8b7f15266c062c7e49adbbb3eb4bdd84b778199 /Misc
parentfc6b348b12ad401cab0261b7b71a65c60a08c0a8 (diff)
downloadcpython-cbe1756e3ecefc0e24a5d0a4b8663db9b6d0cc52.zip
cpython-cbe1756e3ecefc0e24a5d0a4b8663db9b6d0cc52.tar.gz
cpython-cbe1756e3ecefc0e24a5d0a4b8663db9b6d0cc52.tar.bz2
bpo-31310: multiprocessing's semaphore tracker should be launched again if crashed (#3247)
* bpo-31310: multiprocessing's semaphore tracker should be launched again if crashed * Avoid mucking with process state in test. Add a warning if the semaphore process died, as semaphores may then be leaked. * Add NEWS entry
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2017-08-30-18-23-54.bpo-31310.7D1UNt.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2017-08-30-18-23-54.bpo-31310.7D1UNt.rst b/Misc/NEWS.d/next/Library/2017-08-30-18-23-54.bpo-31310.7D1UNt.rst
new file mode 100644
index 0000000..4d340f0
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2017-08-30-18-23-54.bpo-31310.7D1UNt.rst
@@ -0,0 +1 @@
+multiprocessing's semaphore tracker should be launched again if crashed.