File Manager V1.5

[SYSTEM@ROOT]: /usr/lib/python3/dist-packages/markdown_it/
INJECT_FILE:
NEW_ENTRY:

FILE_CONTENT: _compat.py

from __future__ import annotations

from collections.abc import Mapping
import sys
from typing import Any

DATACLASS_KWARGS: Mapping[str, Any]
if sys.version_info >= (3, 10):
    DATACLASS_KWARGS = {"slots": True}
else:
    DATACLASS_KWARGS = {}
[ KEMBALI ]