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

Method entry_points

Lib/importlib/metadata/__init__.py:574–581  ·  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

572
573 @property
574 def entry_points(self) -> EntryPoints:
575 """
576 Return EntryPoints for this distribution.
577
578 Custom providers may provide the ``entry_points.txt`` file
579 or override this property.
580 """
581 return EntryPoints._from_text_for(self.read_text('entry_points.txt'), self)
582
583 @property
584 def files(self) -> list[PackagePath] | None:

Callers

nothing calls this directly

Calls 2

read_textMethod · 0.95
_from_text_forMethod · 0.80

Tested by

no test coverage detected