MCPcopy Create free account
hub / github.com/DeepRec-AI/DeepRec / _getfullargspec

Function _getfullargspec

tensorflow/python/util/tf_inspect.py:81–90  ·  view source on GitHub ↗

A python2 version of getfullargspec. Args: target: the target object to inspect. Returns: A FullArgSpec with empty kwonlyargs, kwonlydefaults and annotations.

(target)

Source from the content-addressed store, hash-verified

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
93def currentframe():

Callers 1

getfullargspecFunction · 0.85

Calls 2

getargspecFunction · 0.85

Tested by

no test coverage detected