cpython/Modules/_io
Gregory P. Smith 99716166b1 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.
2012-10-12 13:02:06 -07:00
..
_iomodule.c Fix typo “seperator” 2012-02-26 01:41:39 +01:00
_iomodule.h Fixes Issue #12268 for the io module - File readline, readlines and 2012-10-12 13:02:06 -07:00
bufferedio.c Fixes Issue #12268 for the io module - File readline, readlines and 2012-10-12 13:02:06 -07:00
bytesio.c Issue #15841: The readable(), writable() and seekable() methods of io.BytesIO 2012-09-05 20:11:49 +02:00
fileio.c Fixes Issue #12268 for the io module - File readline, readlines and 2012-10-12 13:02:06 -07:00
iobase.c Fixes Issue #12268 for the io module - File readline, readlines and 2012-10-12 13:02:06 -07:00
stringio.c Issue #15841: The readable(), writable() and seekable() methods of io.BytesIO 2012-09-05 20:11:49 +02:00
textio.c Fixes Issue #12268 for the io module - File readline, readlines and 2012-10-12 13:02:06 -07:00