MCPcopy Index your code
hub / github.com/python/cpython / all_methods

Function all_methods

Lib/multiprocessing/managers.py:122–131  ·  view source on GitHub ↗

Return a list of names of methods of `obj`

(obj)

Source from the content-addressed store, hash-verified

120#
121
122def all_methods(obj):
123 '''
124 Return a list of names of methods of `obj`
125 '''
126 temp = []
127 for name in dir(obj):
128 func = getattr(obj, name)
129 if callable(func):
130 temp.append(name)
131 return temp
132
133def public_methods(obj):
134 '''

Callers 1

public_methodsFunction · 0.85

Calls 1

appendMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…