summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2011-07-05 09:34:18 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2011-07-05 09:34:18 (GMT)
commitd9fc85db7f644c36d8709af49c97bed62451e59a (patch)
tree9299bedf9eff79d445e85096ab9d5729fc166546 /Misc/NEWS
parent9797e29f86eac1504a518ee5a4bf5b3b53c24c63 (diff)
parentc655a726dba5799e3c221b6c95fee72516d3d7cf (diff)
downloadcpython-d9fc85db7f644c36d8709af49c97bed62451e59a.zip
cpython-d9fc85db7f644c36d8709af49c97bed62451e59a.tar.gz
cpython-d9fc85db7f644c36d8709af49c97bed62451e59a.tar.bz2
(merge 3.2) Issue #9611, #9015: FileIO.read() clamps the length to INT_MAX on Windows.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS4
1 files changed, 3 insertions, 1 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index d4c9258..e5e188e 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,8 @@ What's New in Python 3.3 Alpha 1?
Core and Builtins
-----------------
+- Issue #9611, #9015: FileIO.read() clamps the length to INT_MAX on Windows.
+
- Issue #9642: Uniformize the tests on the availability of the mbcs codec, add
a new HAVE_MBCS define.
@@ -1327,7 +1329,7 @@ Core and Builtins
(length bigger than 2^31-1 bytes).
- Issue #9015, #9611: FileIO.readinto(), FileIO.write(), os.write() and
- stdprinter.write() clamp the length to 2^31-1 on Windows.
+ stdprinter.write() clamp the length to INT_MAX on Windows.
- Issue #8278: On Windows and with a NTFS filesystem, os.stat() and os.utime()
can now handle dates after 2038.