junrushao opened a new issue, #356: URL: https://github.com/apache/tvm-ffi/issues/356
Flags: - [ ] `init=True`: generates `__init__`, run `__post_init__` if presents - [ ] `repr=True`: generates `__repr__` - [ ] `eq=True`: generates `__eq__` and `__ne__` - [ ] `order=False`: generates `__lt__`, `__le__`, `__gt__`, and `__ge__`, - [ ] `unsafe_hash=False` - [ ] `frozen=False`: mutability - [ ] `match_args=True` - [ ] `kw_only=False` - [ ] `slots=False`: I believe we should turn it to `True` always - [ ] `weakref_slot=False` - [ ] def __copy__(self) - [ ] def __deepcopy__(self, memo): `dataclasses.field` directive: - [ ] default=MISSING, default_factory=MISSING - [ ] init=True - [ ] repr=True - [ ] hash=None - [ ] compare=True - [ ] metadata=None - [ ] kw_only=MISSING - [ ] doc=None Misc: - [ ] InitVar - [ ] ClassVar - [ ] dataclasses.fields - [ ] dataclasses.asdict - [ ] dataclasses.astuple - [ ] dataclasses.make_dataclass - [ ] dataclasses.replace - [ ] dataclasses.is_dataclass - [ ] dataclasses.KW_ONLY -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
