(self, myseq, wait)
| 288 | return |
| 289 | |
| 290 | def getresponse(self, myseq, wait): |
| 291 | response = self._getresponse(myseq, wait) |
| 292 | if response is not None: |
| 293 | how, what = response |
| 294 | if how == "OK": |
| 295 | response = how, self._proxify(what) |
| 296 | return response |
| 297 | |
| 298 | def _proxify(self, obj): |
| 299 | if isinstance(obj, RemoteProxy): |
no test coverage detected