PHP 8.2.30
Preview: __pkginfo__.py Size: 1.31 KB
/proc/thread-self/root/opt/cloudlinux/venv/lib/python3.11/site-packages/pylint/__pkginfo__.py

# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
# For details: https://github.com/PyCQA/pylint/blob/main/LICENSE
# Copyright (c) https://github.com/PyCQA/pylint/blob/main/CONTRIBUTORS.txt

"""This module exists for compatibility reasons.

It's updated via tbump, do not modify.
"""

from __future__ import annotations

__version__ = "2.17.4"


def get_numversion_from_version(v: str) -> tuple[int, int, int]:
    """Kept for compatibility reason.

    See https://github.com/PyCQA/pylint/issues/4399
    https://github.com/PyCQA/pylint/issues/4420,
    """
    version = v.replace("pylint-", "")
    result_version = []
    for number in version.split(".")[0:3]:
        try:
            result_version.append(int(number))
        except ValueError:
            current_number = ""
            for char in number:
                if char.isdigit():
                    current_number += char
                else:
                    break
            try:
                result_version.append(int(current_number))
            except ValueError:
                result_version.append(0)
    while len(result_version) != 3:
        result_version.append(0)

    return tuple(result_version)  # type: ignore[return-value] # mypy can't infer the length


numversion = get_numversion_from_version(__version__)

Directory Contents

Dirs: 10 × Files: 9

Name Size Perms Modified Actions
checkers DIR
- drwxr-xr-x 2026-02-06 08:01:08
Edit Download
config DIR
- drwxr-xr-x 2026-02-06 08:01:08
Edit Download
- drwxr-xr-x 2026-02-06 08:01:08
Edit Download
lint DIR
- drwxr-xr-x 2026-02-06 08:01:08
Edit Download
message DIR
- drwxr-xr-x 2026-02-06 08:01:08
Edit Download
pyreverse DIR
- drwxr-xr-x 2026-02-06 08:01:08
Edit Download
reporters DIR
- drwxr-xr-x 2026-02-06 08:01:08
Edit Download
testutils DIR
- drwxr-xr-x 2026-02-06 08:01:08
Edit Download
utils DIR
- drwxr-xr-x 2026-02-06 08:01:08
Edit Download
- drwxr-xr-x 2026-02-06 08:01:08
Edit Download
9.91 KB lrw-r--r-- 2026-01-20 13:01:48
Edit Download
7.18 KB lrw-r--r-- 2026-01-20 13:01:48
Edit Download
1.68 KB lrw-r--r-- 2026-01-20 13:01:48
Edit Download
6.95 KB lrw-r--r-- 2026-01-20 13:01:48
Edit Download
3.96 KB lrw-r--r-- 2026-01-20 13:01:48
Edit Download
3.17 KB lrw-r--r-- 2026-01-20 13:01:48
Edit Download
3.48 KB lrw-r--r-- 2026-01-20 13:01:48
Edit Download
305 B lrw-r--r-- 2026-01-20 13:01:48
Edit Download
1.31 KB lrw-r--r-- 2026-01-20 13:01:48
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).