Select entry points from self that match the given parameters (typically group and/or name).
(self, **params)
| 338 | return '%s(%r)' % (self.__class__.__name__, tuple(self)) |
| 339 | |
| 340 | def select(self, **params) -> EntryPoints: |
| 341 | """ |
| 342 | Select entry points from self that match the |
| 343 | given parameters (typically group and/or name). |
| 344 | """ |
| 345 | return EntryPoints(ep for ep in self if ep.matches(**params)) |
| 346 | |
| 347 | @property |
| 348 | def names(self) -> set[str]: |
no test coverage detected