3.0.2
Changed
orjson.dumps()
does not serializedataclasses.dataclass
attributes
that begin with a leading underscore, e.g.,_attr
. This is because of the
Python idiom that a leading underscores marks an attribute as "private."orjson.dumps()
does not serializedataclasses.dataclass
attributes that
areInitVar
orClassVar
whether using__slots__
or not.