Return a list of names of methods of `obj` which do not start with '_'
(obj)
| 130 | return temp |
| 131 | |
| 132 | def 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 |