MCPcopy Index your code
hub / github.com/RustPython/RustPython / public_methods

Function public_methods

Lib/multiprocessing/managers.py:132–136  ·  view source on GitHub ↗

Return a list of names of methods of `obj` which do not start with '_'

(obj)

Source from the content-addressed store, hash-verified

130 return temp
131
132def public_methods(obj):
133 '''
134 Return a list of names of methods of `obj` which do not start with '_'
135 '''
136 return [name for name in all_methods(obj) if name[0] != '_']
137
138#
139# Server which is run in a process controlled by a manager

Callers 1

createMethod · 0.85

Calls 1

all_methodsFunction · 0.85

Tested by

no test coverage detected