(path, *args)
| 3824 | with open(path, "rb") as fp: |
| 3825 | return os.getxattr(fp.fileno(), *args) |
| 3826 | def setxattr(path, *args): |
| 3827 | with open(path, "wb", 0) as fp: |
| 3828 | os.setxattr(fp.fileno(), *args) |
| 3829 | def removexattr(path, *args): |
| 3830 | with open(path, "wb", 0) as fp: |
| 3831 | os.removexattr(fp.fileno(), *args) |
no test coverage detected