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

Function public_methods

Lib/multiprocessing/managers.py:133–137  ·  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

131 return temp
132
133def public_methods(obj):
134 '''
135 Return a list of names of methods of `obj` which do not start with '_'
136 '''
137 return [name for name in all_methods(obj) if name[0] != '_']
138
139#
140# 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

Used in the wild real call sites across dependent graphs

searching dependent graphs…