Searched defs:getfullargspec (Results 1 - 2 of 2) sorted by relevance

/external/tensorflow/tensorflow/python/util/
H A Dtf_inspect.py48 def getfullargspec(obj): # pylint: disable=redefined-builtin function
49 """TFDecorator-aware replacement for inspect.getfullargspec and fallback to
58 callable is not decorated, `inspect.getfullargspec()`
62 spec_fn = getattr(_inspect, 'getfullargspec', getattr(_inspect, 'getargspec'))
/external/python/cpython3/Lib/
H A Dinspect.py20 getfullargspec() - same, with support for Python 3 features
1035 Alternatively, use getfullargspec() for an API with a similar namedtuple
1040 "use inspect.signature() or inspect.getfullargspec()",
1043 getfullargspec(func)
1046 ", use getfullargspec() API which can support them")
1052 def getfullargspec(func): function
1072 # There is a notable difference in behaviour between getfullargspec
1083 # getfullargspec() historically ignored __wrapped__ attributes,
1178 """Format an argument spec from the values returned by getfullargspec.
1284 spec = getfullargspec(fun
[all...]

Completed in 458 milliseconds