From: Victor Stinner Date: Sun, 1 May 2011 23:14:55 +0000 (+0200) Subject: (Merge 3.2) Issue #11277: mmap.mmap() calls fcntl(fd, F_FULLFSYNC) on Mac OS X X-Git-Tag: v3.3.0a1~2438 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=fadeeffe5b7184c5406ee64e46550bc90395e8f7;p=python (Merge 3.2) 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. --- fadeeffe5b7184c5406ee64e46550bc90395e8f7 diff --cc Misc/NEWS index 39d3da4aee,2a500949bc..842b87b19c --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -132,9 -79,9 +132,12 @@@ Core and Builtin 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 #8407: Add signal.pthread_sigmask() function to fetch and/or change the + signal mask of the calling thread. + - Issue #11858: configparser.ExtendedInterpolation expected lower-case section names.