Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.11/site-packages/pydantic/_internal/_internal_dataclass.py: 60%

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

5 statements  

1import sys 

2 

3# `slots` is available on Python >= 3.10 

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

5 slots_true = {'slots': True} 

6else: 

7 slots_true = {}