Adam Boche

Results 4 comments of Adam Boche

This is correctly parsed, which is nice: ``` >>> HumanName("MURDOCK, Orrice Abram, Jr. (Abe)") ```

Yep, that sounds like a good solution! It'd be very nice to have the option to put it on any of four edges (top, bottom, left, right) and in any...

Yeah, some information gets lost in translation during the unioning process. For a more explicit take on the multiple-type serialization, [marshmallow-polyfield](https://github.com/Bachmann1234/marshmallow-polyfield) looks like a good option.

That's an interesting point. Union is behaving similarly to `fields.List(fields.Int())` and differs from the `Generic[T]` syntax of `typing.Union[...]` and `typing.List[int]`. > In my case I am manipulating schemas and fields...