Searched refs:http_error_302 (Results 1 – 3 of 3) sorted by relevance
/third_party/python/Lib/urllib/ |
D | request.py | 691 def http_error_302(self, req, fp, code, msg, headers): member in HTTPRedirectHandler 751 http_error_301 = http_error_303 = http_error_307 = http_error_302 2153 def http_error_302(self, url, fp, errcode, errmsg, headers, data=None): member in FancyURLopener 2201 return self.http_error_302(url, fp, errcode, errmsg, headers, data) 2205 return self.http_error_302(url, fp, errcode, errmsg, headers, data) 2210 return self.http_error_302(url, fp, errcode, errmsg, headers, data)
|
/third_party/python/Lib/test/ |
D | test_urllib2.py | 1204 h.http_error_302(req, MockFile(), 302, "Blah", 1245 self.assertRaises(urllib.error.HTTPError, h.http_error_302, 1251 h.http_error_302(req, MockFile(), 302, "That's fine", 1264 h.http_error_302(req, MockFile(), 302, "That's fine",
|
/third_party/python/Doc/library/ |
D | urllib.request.rst | 866 .. method:: HTTPRedirectHandler.http_error_302(req, fp, code, msg, hdrs)
|