class documentation

class EntryPoints(tuple): (source)

View In Hierarchy

An immutable collection of selectable EntryPoint objects.

Method __getitem__ Get the EntryPoint in self matching name.
Method select Select entry points from self that match the given parameters (typically group and/or name).
Class Variable __slots__ Undocumented
Property groups Return the set of all groups of all entry points.
Property names Return the set of all names of all entry points.
Class Method _from_text_for Undocumented
Static Method _from_text Undocumented
def __getitem__(self, name): (source)

Get the EntryPoint in self matching name.

def select(self, **params): (source)

Select entry points from self that match the given parameters (typically group and/or name).

__slots__: tuple = (source)

Undocumented

Return the set of all groups of all entry points.

Return the set of all names of all entry points.

@classmethod
def _from_text_for(cls, text, dist): (source)

Undocumented

@staticmethod
def _from_text(text): (source)

Undocumented