diff options
author | Benjamin Peterson <benjamin@python.org> | 2009-05-30 03:10:52 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2009-05-30 03:10:52 (GMT) |
commit | ecf3c624405ed858344d1df8814cd5dc58f1834c (patch) | |
tree | b8f57dbaf712f1f3fbdb5572454d87b42ec32180 | |
parent | 465089271fe32e8e5c573abeca13489553d27982 (diff) | |
download | cpython-ecf3c624405ed858344d1df8814cd5dc58f1834c.zip cpython-ecf3c624405ed858344d1df8814cd5dc58f1834c.tar.gz cpython-ecf3c624405ed858344d1df8814cd5dc58f1834c.tar.bz2 |
no fdatasync on macos
-rw-r--r-- | Doc/library/os.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Doc/library/os.rst b/Doc/library/os.rst index b679275..fc6f654 100644 --- a/Doc/library/os.rst +++ b/Doc/library/os.rst @@ -528,6 +528,9 @@ by file descriptors. Force write of file with filedescriptor *fd* to disk. Does not force update of metadata. Availability: Unix. + .. note:: + This function is not available on MacOS. + .. function:: fpathconf(fd, name) |