(path, *args)
| 4111 | |
| 4112 | def test_fds(self): |
| 4113 | def getxattr(path, *args): |
| 4114 | with open(path, "rb") as fp: |
| 4115 | return os.getxattr(fp.fileno(), *args) |
| 4116 | def setxattr(path, *args): |
| 4117 | with open(path, "wb", 0) as fp: |
| 4118 | os.setxattr(fp.fileno(), *args) |
no test coverage detected