MCPcopy Index your code
hub / github.com/python/cpython / chmod

Method chmod

Lib/pathlib/__init__.py:1221–1225  ·  view source on GitHub ↗

Change the permissions of the path, like os.chmod().

(self, mode, *, follow_symlinks=True)

Source from the content-addressed store, hash-verified

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 """

Callers 15

create_archiveFunction · 0.95
lchmodMethod · 0.95
_copy_infoFunction · 0.45
test_securityMethod · 0.45
tearDownMethod · 0.45
create_readonly_fileMethod · 0.45
test_args_stringMethod · 0.45
test_call_stringMethod · 0.45

Calls

no outgoing calls