(self, obj)
| 296 | return response |
| 297 | |
| 298 | def _proxify(self, obj): |
| 299 | if isinstance(obj, RemoteProxy): |
| 300 | return RPCProxy(self, obj.oid) |
| 301 | if isinstance(obj, list): |
| 302 | return list(map(self._proxify, obj)) |
| 303 | # XXX Check for other types -- not currently needed |
| 304 | return obj |
| 305 | |
| 306 | def _getresponse(self, myseq, wait): |
| 307 | self.debug("_getresponse:myseq:", myseq) |
no test coverage detected