diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2011-05-01 23:05:37 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2011-05-01 23:05:37 (GMT) |
commit | a6cd0cf0f5530f1e96114927b2824f6dc61f1bbd (patch) | |
tree | ccd842682a0b4893d38d5b4e3ac44fa06a17c6ae /Misc/NEWS | |
parent | 10116d40d8794825c42b2440524411cd406d1f93 (diff) | |
download | cpython-a6cd0cf0f5530f1e96114927b2824f6dc61f1bbd.zip cpython-a6cd0cf0f5530f1e96114927b2824f6dc61f1bbd.tar.gz cpython-a6cd0cf0f5530f1e96114927b2824f6dc61f1bbd.tar.bz2 |
Issue #11277: mmap calls fcntl(fd, F_FULLFSYNC) on Mac OS X to get around a
mmap bug with sparse files. Patch written by Steffen Daode Nurpmeso.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -66,6 +66,9 @@ Core and Builtins Library ------- +- Issue #11277: mmap.mmap() calls fcntl(fd, F_FULLFSYNC) on Mac OS X to get + around a mmap bug with sparse files. Patch written by Steffen Daode Nurpmeso. + - Issue #11763: don't use difflib in TestCase.assertMultiLineEqual if the strings are too long. |