Return a list of names of methods of `obj` which do not start with '_'
(obj)
| 131 | return temp |
| 132 | |
| 133 | def 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 |
no test coverage detected
searching dependent graphs…