cpython/Modules/_io
Victor Stinner 89e3436606 Issue #10841: set binary mode on files; the parser translates newlines
On Windows, set the binary mode on stdin, stdout, stderr and all
io.FileIO objects (to not translate newlines, \r\n <=> \n). The Python parser
translates newlines (\r\n => \n).
2011-01-07 18:47:22 +00:00
..
_iomodule.c
_iomodule.h
bufferedio.c Issue #10750: The `raw` attribute of buffered IO objects is now read-only. 2010-12-21 21:20:59 +00:00
bytesio.c correct logic when pos is after the string #10467 2010-11-20 17:24:04 +00:00
fileio.c Issue #10841: set binary mode on files; the parser translates newlines 2011-01-07 18:47:22 +00:00
iobase.c
stringio.c
textio.c Issue #10180: Pickling file objects is now explicitly forbidden, since 2010-11-05 21:15:39 +00:00