[issue17723] Use FileRead and FileWrite in fileio.c on Windows

2013-04-13 Thread STINNER Victor
STINNER Victor added the comment: See issue #12939 which contains a patch. -- ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue17723] Use FileRead and FileWrite in fileio.c on Windows

2013-04-13 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- nosy: +haypo, sbt ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.py

[issue17723] Use FileRead and FileWrite in fileio.c on Windows

2013-04-13 Thread John Ehresman
New submission from John Ehresman: File object's can use the win32 api FileRead and FileWrite instead of the CRT's read & write function. This would eliminate the need to set the mode to binary on stdin & stdout, which is the underlying cause of issue 16587. This could also possibly be the b