You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The goal here is to go a step further than #120 and add support for the other commonly used collection types.
Why do I even bother ?
the main goal here is to "reintroduce" the Immutable fields in the dataclass. Currently we are limited to List, Dict, Tuple. This is mostly fine, but List and Dict are mutable and give the overall "meh" result once associated with dataclass(frozen=true).
Thus, among those in the list, Sequence and Mapping are my must have. Set and FrozenSet are here just for completness.
Notes:
I'm not very sure how to handle the new fields needed to implement this.
The implementation is pretty straight forward as it's just a special case of marshmallow.fields.List, by simply changing the collection type used in the _deserialize.
But, just like the Union field, should those be considered extras ?
The text was updated successfully, but these errors were encountered:
* Add support for Mapping, Sequence, Set and FrozenSet
With this, most used collection types are supported in the dataclass.
fixes#131
* stronger assertions in tests
* v8.4.0
Co-authored-by: ophir <pere.jobs@gmail.com>
The goal here is to go a step further than #120 and add support for the other commonly used collection types.
Why do I even bother ?
the main goal here is to "reintroduce" the Immutable fields in the dataclass. Currently we are limited to
List, Dict, Tuple
. This is mostly fine, butList
andDict
are mutable and give the overall "meh" result once associated withdataclass(frozen=true)
.Thus, among those in the list,
Sequence
andMapping
are my must have.Set
andFrozenSet
are here just for completness.Notes:
I'm not very sure how to handle the new fields needed to implement this.
The implementation is pretty straight forward as it's just a special case of
marshmallow.fields.List
, by simply changing the collection type used in the_deserialize
.But, just like the
Union
field, should those be considered extras ?The text was updated successfully, but these errors were encountered: