Additional fix for Issue #12268: The io module file object writelines() methods
no longer abort early when one of its write system calls is interrupted (EINTR).
diff --git a/Misc/NEWS b/Misc/NEWS
index 2d46d7d..b74b2f6 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -679,6 +679,9 @@
 Extension Modules
 -----------------
 
+- Issue #12268: The io module file object writelines() methods no longer
+  abort early when one of its write system calls is interrupted (EINTR).
+
 - Fix the leak of a dict in the time module when used in an embedded
   interpreter that is repeatedly initialized and shutdown and reinitialized.