diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2011-07-05 09:31:49 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2011-07-05 09:31:49 (GMT) |
commit | c655a726dba5799e3c221b6c95fee72516d3d7cf (patch) | |
tree | 42520ad3158db726a4ffc53c59a34e9bbfa7affe /Misc | |
parent | bb4a747b695a3c1cce5257f40bc764fb9b44476a (diff) | |
download | cpython-c655a726dba5799e3c221b6c95fee72516d3d7cf.zip cpython-c655a726dba5799e3c221b6c95fee72516d3d7cf.tar.gz cpython-c655a726dba5799e3c221b6c95fee72516d3d7cf.tar.bz2 |
Issue #9611, #9015: FileIO.read() clamps the length to INT_MAX on Windows.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -10,6 +10,8 @@ What's New in Python 3.2.2? Core and Builtins ----------------- +- Issue #9611, #9015: FileIO.read() clamps the length to INT_MAX on Windows. + - When a generator yields, do not retain the caller's exception state on the generator. @@ -908,7 +910,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. |