summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGregory P. Smith <greg@krypto.org>2013-02-01 21:03:39 (GMT)
committerGregory P. Smith <greg@krypto.org>2013-02-01 21:03:39 (GMT)
commitb9817b01edfe6fa369c4c291a5de00732b8abc7c (patch)
tree6c6c6482442bfc0718bba8deb8c5e08f5d7034e9 /Misc
parentb47acbf46abd425f69dcc03e9b4f0c7f7c321ac2 (diff)
downloadcpython-b9817b01edfe6fa369c4c291a5de00732b8abc7c.zip
cpython-b9817b01edfe6fa369c4c291a5de00732b8abc7c.tar.gz
cpython-b9817b01edfe6fa369c4c291a5de00732b8abc7c.tar.bz2
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).
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 917ab8d..4431f18 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -817,6 +817,9 @@ Library
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.