summaryrefslogtreecommitdiff
path: root/astroid/nodes/utils.py
blob: 6dc4828986ea325ce981475d53891489df731d75 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html
# For details: https://github.com/pylint-dev/astroid/blob/main/LICENSE
# Copyright (c) https://github.com/pylint-dev/astroid/blob/main/CONTRIBUTORS.txt

from typing import NamedTuple


class Position(NamedTuple):
    """Position with line and column information."""

    lineno: int
    col_offset: int
    end_lineno: int
    end_col_offset: int