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

Method remotequeue

Lib/idlelib/rpc.py:221–224  ·  view source on GitHub ↗
(self, oid, methodname, args, kwargs)

Source from the content-addressed store, hash-verified

219 return self.asyncreturn(seq)
220
221 def remotequeue(self, oid, methodname, args, kwargs):
222 self.debug("remotequeue:asyncqueue: ", oid, methodname)
223 seq = self.asyncqueue(oid, methodname, args, kwargs)
224 return self.asyncreturn(seq)
225
226 def asynccall(self, oid, methodname, args, kwargs):
227 request = ("CALL", (oid, methodname, args, kwargs))

Callers 2

remote_stack_viewerMethod · 0.80
runcommandMethod · 0.80

Calls 3

debugMethod · 0.95
asyncqueueMethod · 0.95
asyncreturnMethod · 0.95

Tested by

no test coverage detected