Sean McGinnis 4261891d5f Handle deprecation of inspect.getargspec
getargspec has been deprecated in py3 with plans to remove it in py3.6.
The recommendation is to move to inspect.signature, but the results
of that call are different than the existing one.

There is also getfullargspec available under py3 that was originally
deprecated, but for the sake of handling 2/3 code, it has been
un-deprecated. This call uses inspect internally, but returns a mostly
compatible result with what getargspec did. This handles getargspec
deprecation by just using getfullargspec instead if it is available.

Change-Id: I18fbbdf3e4d63c7b3e11806e9347b8df2dba5c8e
Closes-bug: #1733676
2017-11-21 12:57:05 -06:00
..
2016-06-13 15:21:47 +00:00
2016-11-11 18:53:29 +05:30
2016-06-13 15:21:47 +00:00