summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2011-02-21 23:46:27 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2011-02-21 23:46:27 (GMT)
commit97696cbf367209a09657dc83b49f8e509751a322 (patch)
treea105cf2b62314e2c314264adf7a985ca6190f58d /Misc
parenta47c25d74f45268aff6d8407195ee83f3a83a90e (diff)
downloadcpython-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/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index f3e7349..39abedc 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.