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

Method info

Lib/pathlib/__init__.py:836–845  ·  view source on GitHub ↗

A PathInfo object that exposes the file type and other file attributes of this path.

(self)

Source from the content-addressed store, hash-verified

834
835 @property
836 def info(self):
837 """
838 A PathInfo object that exposes the file type and other file attributes
839 of this path.
840 """
841 try:
842 return self._info
843 except AttributeError:
844 self._info = _Info(str(self))
845 return self._info
846
847 def stat(self, *, follow_symlinks=True):
848 """

Callers 15

_process_exitedMethod · 0.45
add_signal_handlerMethod · 0.45
remove_signal_handlerMethod · 0.45
_read_readyMethod · 0.45
_read_readyMethod · 0.45
_getaddrinfo_debugMethod · 0.45
create_serverMethod · 0.45
subprocess_shellMethod · 0.45
subprocess_execMethod · 0.45
_guess_media_encodingMethod · 0.45
_handle_requestMethod · 0.45

Calls 2

strFunction · 0.85
_InfoClass · 0.70

Tested by

no test coverage detected