Change the permissions of the path, like os.chmod().
(self, mode, *, follow_symlinks=True)
| 1021 | raise |
| 1022 | |
| 1023 | def chmod(self, mode, *, follow_symlinks=True): |
| 1024 | """ |
| 1025 | Change the permissions of the path, like os.chmod(). |
| 1026 | """ |
| 1027 | os.chmod(self, mode, follow_symlinks=follow_symlinks) |
| 1028 | |
| 1029 | def lchmod(self, mode): |
| 1030 | """ |
no outgoing calls