oxan / djangorestframework-dataclasses

Dataclasses serializer for Django REST framework
BSD 3-Clause "New" or "Revised" License
431 stars 28 forks source link

Better error message when encountering "special" types #6

Closed intgr closed 4 years ago

intgr commented 4 years ago

_SpecialForm types like Literal, NoReturn don't have an __mro__ attribute.

Previously, using them in a dataclass caused AttributeError.

Also added a unit test for regular unsupported types.