diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2011-02-21 23:46:27 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2011-02-21 23:46:27 (GMT) |
commit | 97696cbf367209a09657dc83b49f8e509751a322 (patch) | |
tree | a105cf2b62314e2c314264adf7a985ca6190f58d /Misc | |
parent | a47c25d74f45268aff6d8407195ee83f3a83a90e (diff) | |
download | cpython-97696cbf367209a09657dc83b49f8e509751a322.zip cpython-97696cbf367209a09657dc83b49f8e509751a322.tar.gz cpython-97696cbf367209a09657dc83b49f8e509751a322.tar.bz2 |
Merged revisions 88486 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r88486 | antoine.pitrou | 2011-02-22 00:41:12 +0100 (mar., 22 févr. 2011) | 5 lines
Issue #4681: Allow mmap() to work on file sizes and offsets larger than
4GB, even on 32-bit builds. Initial patch by Ross Lagerwall, adapted for
32-bit Windows.
........
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -15,6 +15,10 @@ Core and Builtins Library ------- +- Issue #4681: Allow mmap() to work on file sizes and offsets larger than + 4GB, even on 32-bit builds. Initial patch by Ross Lagerwall, adapted for + 32-bit Windows. + - Issue #11089: Fix performance issue limiting the use of ConfigParser() with large config files. |