Method: pylint.checkers.design_analysis._get_parents
Calls: 1520, Exceptions: 0, Paths: 1Back
Path 1: 1520 calls (1.0)
ClassDef (1520)
frozenset({'collections.namedtuple', '_collections_abc.Collection', '_collections_abc.Iterable', '_collections_abc.ByteString', 'typing.Tuple', 'typin...
set() (1069) set (451)
1def _get_parents(
2 node: nodes.ClassDef, ignored_parents: frozenset[str]
3) -> set[nodes.ClassDef]:
4 return set(_get_parents_iter(node, ignored_parents))