utils.py 423 B

1234567891011121314
  1. # Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html
  2. # For details: https://github.com/PyCQA/astroid/blob/main/LICENSE
  3. # Copyright (c) https://github.com/PyCQA/astroid/blob/main/CONTRIBUTORS.txt
  4. from typing import NamedTuple
  5. class Position(NamedTuple):
  6. """Position with line and column information."""
  7. lineno: int
  8. col_offset: int
  9. end_lineno: int
  10. end_col_offset: int