Home | History | Annotate | Download | only in codereview

Lines Matching refs:request_path

2170 def MySend(request_path, payload=None,
2176 return MySend1(request_path, payload, content_type, timeout, force_auth, **kwargs)
2180 print >>sys.stderr, "Loading "+request_path+": "+ExceptionDetail()+"; trying again in 2 seconds."
2182 return MySend1(request_path, payload, content_type, timeout, force_auth, **kwargs)
2187 def MySend1(request_path, payload=None,
2194 request_path: The path to send the request to, eg /api/appversion/create.
2212 if request_path is None:
2222 url = "http://%s%s" % (self.host, request_path)
2729 def Send(self, request_path, payload=None,
2736 request_path: The path to send the request to, eg /api/appversion/create.
2758 url = "http://%s%s" % (self.host, request_path)