summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2011-01-04 00:29:35 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2011-01-04 00:29:35 (GMT)
commite6edec23718072ed7903be9dae37ae330a9d81d5 (patch)
treedd43a4d1de61a8b0b49bef7f3fb299638f7aded9 /Misc
parent560f9dab55701654706b0d257d5d8f34f633bb52 (diff)
downloadcpython-e6edec23718072ed7903be9dae37ae330a9d81d5.zip
cpython-e6edec23718072ed7903be9dae37ae330a9d81d5.tar.gz
cpython-e6edec23718072ed7903be9dae37ae330a9d81d5.tar.bz2
Issue #9015, #9611: FileIO.readinto(), FileIO.write() and os.write() clamp the
length to 2^31-1 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 5df832d..1540db7 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -8,6 +8,9 @@ What's New in Python 3.2 Release Candidate 1
Core and Builtins
-----------------
+- Issue #9015, #9611: FileIO.readinto(), FileIO.write() and os.write() clamp
+ the length to 2^31-1 on Windows.
+
- Issue #8278: On Windows and with a NTFS filesystem, os.stat() and os.utime()
can now handle dates after 2038.