diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2011-01-04 00:29:35 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2011-01-04 00:29:35 (GMT) |
commit | e6edec23718072ed7903be9dae37ae330a9d81d5 (patch) | |
tree | dd43a4d1de61a8b0b49bef7f3fb299638f7aded9 /Misc | |
parent | 560f9dab55701654706b0d257d5d8f34f633bb52 (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |