shuqianpinggu/huaxi/Lib/site-packages/pydantic/_internal/_internal_dataclass.py

8 lines
144 B
Python
Raw Permalink Normal View History

2025-06-17 17:46:44 +08:00
import sys
# `slots` is available on Python >= 3.10
if sys.version_info >= (3, 10):
slots_true = {'slots': True}
else:
slots_true = {}