]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
(merge 3.2) Issue #9611, #9015: FileIO.read() clamps the length to INT_MAX on Windows.
authorVictor Stinner <victor.stinner@haypocalc.com>
Tue, 5 Jul 2011 09:34:18 +0000 (11:34 +0200)
committerVictor Stinner <victor.stinner@haypocalc.com>
Tue, 5 Jul 2011 09:34:18 +0000 (11:34 +0200)
1  2 
Misc/NEWS
Modules/_io/fileio.c

diff --cc Misc/NEWS
index d4c92581ed871c2e007e8e5bd3e501c686b05850,ba0b55b27f49dc1ddfe1c5d199b26a0e48426cdc..e5e188ed4f54cc20cabeaee6902e193ac2e5c0d4
+++ b/Misc/NEWS
@@@ -10,14 -10,8 +10,16 @@@ 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.
 +
 +- Issue #9642: Fix filesystem encoding initialization: use the ANSI code page
 +  on Windows if the mbcs codec is not available, and fail with a fatal error if
 +  we cannot get the locale encoding (if nl_langinfo(CODESET) is not available)
 +  instead of using UTF-8.
 +
  - When a generator yields, do not retain the caller's exception state on the
    generator.
  
Simple merge