Method: pylint.checkers.variables.VariablesChecker.__init__
Calls: 1147, Exceptions: 0, Paths: 1Back
Path 1: 1147 calls (1.0)
PyLinter (1137) UnittestLinter (10)
1def __init__(self, linter: PyLinter) -> None:
2 super().__init__(linter)
3 self._to_consume: list[NamesConsumer] = []
4 self._type_annotation_names: list[str] = []
5 self._except_handler_names_queue: list[
6 tuple[nodes.ExceptHandler, nodes.AssignName]
7 ] = []
8 """This is a queue, last in first out."""
9 self._postponed_evaluation_enabled = False