| 112 | return ValueError('Unrecognized message type {!r}'.format(kind)) |
| 113 | |
| 114 | class RemoteError(Exception): |
| 115 | def __str__(self): |
| 116 | return ('\n' + '-'*75 + '\n' + str(self.args[0]) + '-'*75) |
| 117 | |
| 118 | # |
| 119 | # Functions for finding the method names of an object |
no outgoing calls
no test coverage detected
searching dependent graphs…