summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorGregory P. Smith <greg@krypto.org>2012-10-12 20:02:06 (GMT)
committerGregory P. Smith <greg@krypto.org>2012-10-12 20:02:06 (GMT)
commit99716166b15bd0a35f5d5a3b84b34b978cc28aef (patch)
tree0b7f8cecf5ad5a36c426f2c3d29edc495173c078 /Misc/NEWS
parent2aa5afab4e9ebac2c390e44bf0ac8b1778a0a1bc (diff)
downloadcpython-99716166b15bd0a35f5d5a3b84b34b978cc28aef.zip
cpython-99716166b15bd0a35f5d5a3b84b34b978cc28aef.tar.gz
cpython-99716166b15bd0a35f5d5a3b84b34b978cc28aef.tar.bz2
Fixes Issue #12268 for the io module - File readline, readlines and
read or readall methods no longer lose data when an underlying read system call is interrupted within an io module object. IOError is no longer raised due to a read system call returning EINTR from within these methods. This is a backport of changeset 781b95159954 from 3.2. The earlier 2.7 changeset 67dc99a989cd already fixed this for the builtin python 2.x file object.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS5
1 files changed, 5 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 7d45a89..80fc9f6 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -414,6 +414,11 @@ Library
Extension Modules
-----------------
+- Issue #12268: File readline, readlines and read or readall methods
+ no longer lose data when an underlying read system call is interrupted
+ within an io module object. IOError is no longer raised due to a read
+ system call returning EINTR from within these methods.
+
- Issue #16012: Fix a regression in pyexpat. The parser's UseForeignDTD()
method doesn't require an argument again.