(path, *args)
| 3821 | |
| 3822 | def test_fds(self): |
| 3823 | def getxattr(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) |
no test coverage detected