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

Method entry_points

Lib/importlib/metadata/__init__.py:489–496  ·  view source on GitHub ↗

Return EntryPoints for this distribution. Custom providers may provide the ``entry_points.txt`` file or override this property.

(self)

Source from the content-addressed store, hash-verified

487
488 @property
489 def entry_points(self) -> EntryPoints:
490 """
491 Return EntryPoints for this distribution.
492
493 Custom providers may provide the ``entry_points.txt`` file
494 or override this property.
495 """
496 return EntryPoints._from_text_for(self.read_text('entry_points.txt'), self)
497
498 @property
499 def files(self) -> Optional[List[PackagePath]]:

Callers

nothing calls this directly

Calls 2

read_textMethod · 0.95
_from_text_forMethod · 0.80

Tested by

no test coverage detected