MCPcopy Index your code
hub / github.com/SkyworkAI/DeepResearchAgent / get_method_source

Function get_method_source

src/utils/utils.py:228–232  ·  view source on GitHub ↗

Get source code for a method, including bound methods.

(method)

Source from the content-addressed store, hash-verified

226
227
228def get_method_source(method):
229 """Get source code for a method, including bound methods."""
230 if isinstance(method, types.MethodType):
231 method = method.__func__
232 return get_source(method)
233
234
235def is_same_method(method1, method2):

Callers 1

is_same_methodFunction · 0.85

Calls 1

get_sourceFunction · 0.85

Tested by

no test coverage detected