(path, *args)
| 3830 | with open(path, "wb", 0) as fp: |
| 3831 | os.removexattr(fp.fileno(), *args) |
| 3832 | def listxattr(path, *args): |
| 3833 | with open(path, "rb") as fp: |
| 3834 | return os.listxattr(fp.fileno(), *args) |
| 3835 | self._check_xattrs(getxattr, setxattr, removexattr, listxattr) |
| 3836 | |
| 3837 |
no test coverage detected