MCPcopy Create free account
hub / github.com/numpy/numpy / get_object_signature

Function get_object_signature

numpy/ma/core.py:131–140  ·  view source on GitHub ↗

Get the signature from obj

(obj)

Source from the content-addressed store, hash-verified

129
130
131def get_object_signature(obj):
132 """
133 Get the signature from obj
134
135 """
136 try:
137 sig = formatargspec(*getargspec(obj))
138 except TypeError:
139 sig = ''
140 return sig
141
142
143###############################################################################

Callers 2

getdocMethod · 0.85
getdocMethod · 0.85

Calls 2

formatargspecFunction · 0.85
getargspecFunction · 0.85

Tested by

no test coverage detected