From: Victor Stinner Date: Thu, 3 Jan 2013 02:38:38 +0000 (+0100) Subject: (Merge 3.3) Issue #16367: Fix FileIO.readall() on Windows for files larger than 2 GB. X-Git-Tag: v3.4.0a1~1699 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=fd53a5a01150de79cfb1673e89711c6cd6258ea2;p=python (Merge 3.3) Issue #16367: Fix FileIO.readall() on Windows for files larger than 2 GB. --- fd53a5a01150de79cfb1673e89711c6cd6258ea2 diff --cc Misc/NEWS index 9e629e4164,e4fd504eb3..b00dc53b46 --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -10,6 -12,14 +10,8 @@@ What's New in Python 3.4.0 Alpha 1 Core and Builtins ----------------- + - Issue #16367: Fix FileIO.readall() on Windows for files larger than 2 GB. + -- Issue #16455: On FreeBSD and Solaris, if the locale is C, the - ASCII/surrogateescape codec is now used, instead of the locale encoding, to - decode the command line arguments. This change fixes inconsistencies with - os.fsencode() and os.fsdecode() because these operating systems announces an - ASCII locale encoding, whereas the ISO-8859-1 encoding is used in practice. - - Issue #16761: Calling int() with base argument only now raises TypeError. - Issue #16759: Support the full DWORD (unsigned long) range in Reg2Py