nirum-lang / nirum-python

The Nirum runtime library for Python
https://nirum.org/docs/target/python.html
MIT License
8 stars 9 forks source link

Make compatible with both old & new typing versions #39

Closed dahlia closed 8 years ago

dahlia commented 8 years ago

Whereas on Python/typing < 3.5.2 type parameters are stored to __parameters__ attribute, on Python/typing ≥ 3.5.2 __parameters__ attribute is gone and __args__ attribute comes instead.

This patch makes the code compatible with both old and new typing versions.