MCPcopy Index your code
hub / github.com/python/cpython / getresponse

Method getresponse

Lib/idlelib/rpc.py:290–296  ·  view source on GitHub ↗
(self, myseq, wait)

Source from the content-addressed store, hash-verified

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):

Callers 6

asyncreturnMethod · 0.95
mainloopMethod · 0.95
emitMethod · 0.45
handleMethod · 0.45
single_requestMethod · 0.45
do_openMethod · 0.45

Calls 2

_getresponseMethod · 0.95
_proxifyMethod · 0.95

Tested by

no test coverage detected