Home | History | Annotate | Download | only in multiprocessing

Lines Matching refs:methodname

97 def dispatch(c, id, methodname, args=(), kwds={}):
101 c.send((id, methodname, args, kwds))
239 methodname = obj = None
241 ident, methodname, args, kwds = request
244 if methodname not in exposed:
247 (methodname, type(obj), exposed)
250 function = getattr(obj, methodname)
257 typeid = gettypeid and gettypeid.get(methodname, None)
266 if methodname is None:
270 fallback_func = self.fallback_mapping[methodname]
746 def _callmethod(self, methodname, args=(), kwds={}):
758 conn.send((self._id, methodname, args, kwds))