Change the permissions of the path, like os.chmod().
(self, mode)
| 1470 | raise |
| 1471 | |
| 1472 | def chmod(self, mode): |
| 1473 | """ |
| 1474 | Change the permissions of the path, like os.chmod(). |
| 1475 | """ |
| 1476 | if self._closed: |
| 1477 | self._raise_closed() |
| 1478 | self._accessor.chmod(self, mode) |
| 1479 | |
| 1480 | def lchmod(self, mode): |
| 1481 | """ |
no test coverage detected