about summary refs log tree commit diff
path: root/.venv/lib/python3.12/site-packages/pydantic/_internal/_internal_dataclass.py
blob: 33e152cc8d178486ef016285855495a86d5991d8 (plain)
1
2
3
4
5
6
7
import sys

# `slots` is available on Python >= 3.10
if sys.version_info >= (3, 10):
    slots_true = {'slots': True}
else:
    slots_true = {}