diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2011-07-05 09:28:19 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2011-07-05 09:28:19 (GMT) |
commit | 59729ff609aeaf4ca6d8f5009ec5ec93c61187a1 (patch) | |
tree | 9574e4d5d8e7670ffb76d1a274d2de243d4de7b9 /Misc | |
parent | 4833c98f85c1ec06a7451f56e1bf3b1f9951da0b (diff) | |
download | cpython-59729ff609aeaf4ca6d8f5009ec5ec93c61187a1.zip cpython-59729ff609aeaf4ca6d8f5009ec5ec93c61187a1.tar.gz cpython-59729ff609aeaf4ca6d8f5009ec5ec93c61187a1.tar.bz2 |
Issue #9611, #9015: FileIO.read(), FileIO.readinto(), FileIO.write() and
os.write() clamp the length to INT_MAX on Windows.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -9,6 +9,9 @@ What's New in Python 2.7.3? Core and Builtins ----------------- +- Issue #9611, #9015: FileIO.read(), FileIO.readinto(), FileIO.write() and + os.write() clamp the length to INT_MAX on Windows. + - Issue #1195: my_fgets() now always clears errors before calling fgets(). Fix the following case: sys.stdin.read() stopped with CTRL+d (end of file), raw_input() interrupted by CTRL+c. |