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

8 statements  

1from __future__ import annotations 

2 

3from collections.abc import Mapping 

4import sys 

5from typing import Any 

6 

7DATACLASS_KWARGS: Mapping[str, Any] 

8if sys.version_info >= (3, 10): 

9 DATACLASS_KWARGS = {"slots": True} 

10else: 

11 DATACLASS_KWARGS = {}