painterjd / stoplight

Stoplight -- An Input Validation Framework for Python
Apache License 2.0
15 stars 5 forks source link

Avoid DeprecationWarning on Python 3 #20

Closed drewbrew closed 5 years ago

drewbrew commented 5 years ago

Since Python 3.0, inspect.getargspec has been deprecated in favor of inspect.getfullargspec. Both are namedtuples which provide the args attribute, so it's a drop-in replacement for this project's needs.

Use a try/catch AttributeError to preserve Python 2 compatibility.

Fixes #19.