Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for Mapping, Sequence, Set and FrozenSet #131

Closed
anis-campos opened this issue Apr 3, 2021 · 1 comment · Fixed by #132
Closed

Add support for Mapping, Sequence, Set and FrozenSet #131

anis-campos opened this issue Apr 3, 2021 · 1 comment · Fixed by #132

Comments

@anis-campos
Copy link
Contributor

anis-campos commented Apr 3, 2021

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 ?

@anis-campos
Copy link
Contributor Author

Seems related to #99

lovasoa added a commit that referenced this issue Apr 5, 2021
* 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>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant