Issue #12364: Fix a hang in concurrent.futures.ProcessPoolExecutor.
diff --git a/Misc/NEWS b/Misc/NEWS
index 9212f9e..8e95abb 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -97,6 +97,10 @@
Library
-------
+- Issue #12364: Fix a hang in concurrent.futures.ProcessPoolExecutor.
+ The hang would occur when retrieving the result of a scheduled future after
+ the executor had been shut down.
+
- Issue #13502: threading: Fix a race condition in Event.wait() that made it
return False when the event was set and cleared right after.