Lines Matching refs:resp
97 resp, content = request_orig(uri, method, body, headers,
100 return resp, content
196 resp, content = http.request("http://example.com")
206 resp, content = http.request("http://example.com")
1169 resp, content = batch._deserialize_response(RESPONSE)
1171 self.assertEqual(200, resp.status)
1172 self.assertEqual('OK', resp.reason)
1173 self.assertEqual(11, resp.version)
1394 self.assertEqual(401, callbacks.exceptions['1'].resp.status)
1396 'Authorization Required', callbacks.exceptions['1'].resp.reason)
1438 def _postproc(resp, content):
1509 def _on_response(resp, responses=responses):
1510 responses.append(resp)
1519 resp, content = http.request("http://example.com")
1520 self.assertEqual(resp.status, 200)