Change the permissions of the path, like os.chmod().
(self, mode, *, follow_symlinks=True)
| 1219 | raise |
| 1220 | |
| 1221 | def chmod(self, mode, *, follow_symlinks=True): |
| 1222 | """ |
| 1223 | Change the permissions of the path, like os.chmod(). |
| 1224 | """ |
| 1225 | os.chmod(self, mode, follow_symlinks=follow_symlinks) |
| 1226 | |
| 1227 | def lchmod(self, mode): |
| 1228 | """ |
no outgoing calls