Home | History | Annotate | Download | only in tests

Lines Matching refs:http

7     http = httplib2.Http()
12 response, content = http.request(uri, "HEAD")
20 http = httplib2.Http()
26 response, content = http.request(uri, "GET")
35 http = httplib2.Http()
41 response, content = http.request(uri, "POST", body=b"")
48 http = httplib2.Http()
50 http.force_exception_to_status_code = False
56 http.request(uri, "GET")
59 http.force_exception_to_status_code = True
61 response, content = http.request(uri, "GET")
68 http = httplib2.Http()
74 response, content = http.request(uri, "GET")
83 http = httplib2.Http()
84 http.force_exception_to_status_code = False
90 http.request(uri, "GET")
93 http.force_exception_to_status_code = True
95 response, content = http.request(uri, "GET")