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

Method stat

Lib/pathlib/__init__.py:847–852  ·  view source on GitHub ↗

Return the result of the stat() system call on this path, like os.stat() does.

(self, *, follow_symlinks=True)

Source from the content-addressed store, hash-verified

845 return self._info
846
847 def stat(self, *, follow_symlinks=True):
848 """
849 Return the result of the stat() system call on this path, like
850 os.stat() does.
851 """
852 return os.stat(self, follow_symlinks=follow_symlinks)
853
854 def lstat(self):
855 """

Callers 15

create_archiveFunction · 0.95
is_dirMethod · 0.95
is_fileMethod · 0.95
is_block_deviceMethod · 0.95
is_char_deviceMethod · 0.95
is_fifoMethod · 0.95
is_socketMethod · 0.95
samefileMethod · 0.95
ownerMethod · 0.95
groupMethod · 0.95
expect_fileMethod · 0.95
create_unix_serverMethod · 0.45

Calls

no outgoing calls

Tested by 15

expect_fileMethod · 0.76
setUpMethod · 0.36
test_openMethod · 0.36
test_umaskMethod · 0.36
test_samestatMethod · 0.36