MCPcopy Index your code
hub / github.com/RustPython/RustPython / info

Method info

Lib/pathlib/__init__.py:638–647  ·  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

636
637 @property
638 def info(self):
639 """
640 A PathInfo object that exposes the file type and other file attributes
641 of this path.
642 """
643 try:
644 return self._info
645 except AttributeError:
646 self._info = PathInfo(self)
647 return self._info
648
649 def stat(self, *, follow_symlinks=True):
650 """

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 1

PathInfoClass · 0.85

Tested by

no test coverage detected