Switch a use of inspect.getargspec to func_accepts_kwargs
Review Request #12030 — Created Feb. 3, 2022 and discarded — Latest diff uploaded
We had a place that was using the old
getargspec
method just to
determine if a method accepted**kwargs
. Django has a helper for just
this purpose, so we should switch to it.
Ran unit tests.