(path, *args)
| 4120 | with open(path, "wb", 0) as fp: |
| 4121 | os.removexattr(fp.fileno(), *args) |
| 4122 | def listxattr(path, *args): |
| 4123 | with open(path, "rb") as fp: |
| 4124 | return os.listxattr(fp.fileno(), *args) |
| 4125 | self._check_xattrs(getxattr, setxattr, removexattr, listxattr) |
| 4126 | |
| 4127 |
no test coverage detected