Merge "Replace deprecated inspect.getargspec"

This commit is contained in:
Zuul
2021-08-20 06:04:11 +00:00
committed by Gerrit Code Review

View File

@@ -90,7 +90,7 @@ def validate_args(fn, *args, **kwargs):
:param arg: the positional arguments supplied
:param kwargs: the keyword arguments supplied
"""
argspec = inspect.getargspec(fn)
argspec = inspect.getfullargspec(fn)
num_defaults = len(argspec.defaults or [])
required_args = argspec.args[:len(argspec.args) - num_defaults]