commit | 23a32ba0e5afcee7184408cf9415f038e864df96 | [log] [tgz] |
---|---|---|
author | Victor Stinner <victor.stinner@gmail.com> | Thu Jan 03 03:33:21 2013 +0100 |
committer | Victor Stinner <victor.stinner@gmail.com> | Thu Jan 03 03:33:21 2013 +0100 |
tree | 37881c23ca69420d82f4c912fbee77766faec712 | |
parent | 049a378cd7e2ec097715eb08d420b7fe3cd6b49a [diff] [blame] |
Issue #16367: Fix FileIO.readall() on Windows for files larger than 2 GB
diff --git a/Misc/NEWS b/Misc/NEWS index 224e456..097f205 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -9,6 +9,8 @@ Core and Builtins ----------------- +- Issue #16367: Fix FileIO.readall() on Windows for files larger than 2 GB. + - Issue #15516: Fix a bug in PyString_FromFormat where it failed to properly ignore errors from a __int__() method.