diff options
author | Gregory P. Smith <greg@krypto.org> | 2013-02-01 21:03:39 (GMT) |
---|---|---|
committer | Gregory P. Smith <greg@krypto.org> | 2013-02-01 21:03:39 (GMT) |
commit | b9817b01edfe6fa369c4c291a5de00732b8abc7c (patch) | |
tree | 6c6c6482442bfc0718bba8deb8c5e08f5d7034e9 /Misc | |
parent | b47acbf46abd425f69dcc03e9b4f0c7f7c321ac2 (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |