mikeboers / PyHAML

Pythonic implementation of HAML, cross compiling to Mako template syntax.
BSD 3-Clause "New" or "Revised" License
97 stars 13 forks source link

python3.5 #23

Closed aep closed 5 years ago

aep commented 7 years ago

nodes.py line 214 should probably say

valid = not getattr(func, 'starargs', None) and not getattr(func, 'kwargs', None)

since 3.5 doesnt have starargs

mikeboers commented 5 years ago

I've updated for Python 3.5 and beyond.