docs: OS X -> macOS

This commit is contained in:
Thomas Waldmann 2023-07-04 23:56:29 +02:00
parent be731334c3
commit 8db8fd601b
No known key found for this signature in database
GPG Key ID: 243ACFA951F78E01
4 changed files with 5 additions and 5 deletions

View File

@ -372,7 +372,7 @@ Checklist:
* pypi dist package and signature * pypi dist package and signature
* Standalone binaries (see above for how to create them). * Standalone binaries (see above for how to create them).
+ For OS X, document the OS X Fuse version in the README of the binaries. + For macOS, document the macFUSE version in the README of the binaries.
OS X FUSE uses a kernel extension that needs to be compatible with the macFUSE uses a kernel extension that needs to be compatible with the
code contained in the binary. code contained in the binary.
* A link to ``CHANGES.rst``. * A link to ``CHANGES.rst``.

View File

@ -29,7 +29,7 @@ On some platforms additional features are supported:
+=========================+==========+===========+============+ +=========================+==========+===========+============+
| Linux | Yes | Yes | Yes [1]_ | | Linux | Yes | Yes | Yes [1]_ |
+-------------------------+----------+-----------+------------+ +-------------------------+----------+-----------+------------+
| Mac OS X | Yes | Yes | Yes (all) | | macOS | Yes | Yes | Yes (all) |
+-------------------------+----------+-----------+------------+ +-------------------------+----------+-----------+------------+
| FreeBSD | Yes | Yes | Yes (all) | | FreeBSD | Yes | Yes | Yes (all) |
+-------------------------+----------+-----------+------------+ +-------------------------+----------+-----------+------------+

View File

@ -161,7 +161,7 @@ class PlatformLinuxTestCase(BaseTestCase):
self.assert_equal(acl_use_local_uid_gid(b"group:root:rw-:0"), b"group:0:rw-") self.assert_equal(acl_use_local_uid_gid(b"group:root:rw-:0"), b"group:0:rw-")
@unittest.skipUnless(sys.platform.startswith("darwin"), "OS X only test") @unittest.skipUnless(sys.platform.startswith("darwin"), "macOS only test")
@unittest.skipIf(fakeroot_detected(), "not compatible with fakeroot") @unittest.skipIf(fakeroot_detected(), "not compatible with fakeroot")
class PlatformDarwinTestCase(BaseTestCase): class PlatformDarwinTestCase(BaseTestCase):
def setUp(self): def setUp(self):

View File

@ -1,4 +1,4 @@
"""A basic extended attributes (xattr) implementation for Linux, FreeBSD and MacOS X.""" """A basic extended attributes (xattr) implementation for Linux, FreeBSD and macOS."""
import errno import errno
import os import os