A python2 version of getfullargspec. Args: target: the target object to inspect. Returns: A FullArgSpec with empty kwonlyargs, kwonlydefaults and annotations.
(target)
| 79 | _getargspec = _inspect.getargspec |
| 80 | |
| 81 | def _getfullargspec(target): |
| 82 | """A python2 version of getfullargspec. |
| 83 | |
| 84 | Args: |
| 85 | target: the target object to inspect. |
| 86 | |
| 87 | Returns: |
| 88 | A FullArgSpec with empty kwonlyargs, kwonlydefaults and annotations. |
| 89 | """ |
| 90 | return _convert_maybe_argspec_to_fullargspec(getargspec(target)) |
| 91 | |
| 92 | |
| 93 | def currentframe(): |
no test coverage detected