MCPcopy Index your code
hub / github.com/pywebio/PyWebIO / get_function_name

Function get_function_name

pywebio/utils.py:165–168  ·  view source on GitHub ↗
(func, default=None)

Source from the content-addressed store, hash-verified

163
164
165def get_function_name(func, default=None):
166 while isinstance(func, functools.partial):
167 func = func.func
168 return getattr(func, '__name__', default)
169
170
171def get_function_doc(func):

Callers 3

targetFunction · 0.85
register_callbackMethod · 0.85
make_applicationsFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…