This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author gmelikov
Recipients gmelikov
Date 2020-02-15.19:06:08
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1581793568.31.0.586113837137.issue39640@roundup.psfhosted.org>
In-reply-to
Content
POSIX fdatasync() is similar to fsync() but it tries not to sync non-needed metadata. If POSIX OS doesn't have it - it's safe to use fsync() (If we need to sync data to disk - we have to use one of these functions).

This change will help to run code with fdatasync() on MacOS without fallbacks in Python code.

I'll propose a PR soon.
History
Date User Action Args
2020-02-15 19:06:08gmelikovsetrecipients: + gmelikov
2020-02-15 19:06:08gmelikovsetmessageid: <1581793568.31.0.586113837137.issue39640@roundup.psfhosted.org>
2020-02-15 19:06:08gmelikovlinkissue39640 messages
2020-02-15 19:06:08gmelikovcreate