Issue #14252: Fix subprocess.Popen.terminate() to not raise an error under Windows when the child process has already exited.
diff --git a/Misc/NEWS b/Misc/NEWS
index 0e06a1a..c5c2c82 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -18,6 +18,9 @@
 Library
 -------
 
+- Issue #14252: Fix subprocess.Popen.terminate() to not raise an error under
+  Windows when the child process has already exited.
+
 - Issue #14195: An issue that caused weakref.WeakSet instances to incorrectly
   return True for a WeakSet instance 'a' in both 'a < a' and 'a > a' has been
   fixed.