summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2011-07-05 09:28:19 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2011-07-05 09:28:19 (GMT)
commit59729ff609aeaf4ca6d8f5009ec5ec93c61187a1 (patch)
tree9574e4d5d8e7670ffb76d1a274d2de243d4de7b9 /Misc
parent4833c98f85c1ec06a7451f56e1bf3b1f9951da0b (diff)
downloadcpython-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/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 9d05fc0..38dff5b 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.