_internal_dataclass.py 144 B

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