Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.8/site-packages/markdown_it/_compat.py: 88%
Shortcuts on this page
r m x toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
Shortcuts on this page
r m x toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
1from __future__ import annotations
3from collections.abc import Mapping
4import sys
5from typing import Any
7DATACLASS_KWARGS: Mapping[str, Any]
8if sys.version_info >= (3, 10):
9 DATACLASS_KWARGS = {"slots": True}
10else:
11 DATACLASS_KWARGS = {}