Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.8/site-packages/markdown_it/_compat.py: 86%
7 statements
« prev ^ index » next coverage.py v7.2.7, created at 2023-06-07 06:07 +0000
« prev ^ index » next coverage.py v7.2.7, created at 2023-06-07 06:07 +0000
1from __future__ import annotations
3from collections.abc import Mapping
4import sys
5from typing import Any
7if sys.version_info >= (3, 10):
8 DATACLASS_KWARGS: Mapping[str, Any] = {"slots": True}
9else:
10 DATACLASS_KWARGS: Mapping[str, Any] = {}