shuqianpinggu/huaxi/Lib/site-packages/pydantic/_internal/_internal_dataclass.py
WIN-T9V3LPE8NK2\Administrator 4911f3024f 主分支
2025-06-17 17:46:44 +08:00

8 lines
144 B
Python

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