0.8.0 - PEP484 support
PEP484 type hints support
- Now type hints relying on the
typingmodule (PEP484) are correctly checked using whatever 3d party type checking library is available (typeguardis first looked for, thenpytypesas a fallback). If none of these providers are available, a fallback implementation is provided, basically flatteningUnions and replacingTypeVars before doingis_instance. It is not guaranteed to support alltypingsubtelties. Fixes #7
See documentation page for details.