/external/python/cpython2/Lib/ |
D | urllib.py | 629 def http_error_302(self, url, fp, errcode, errmsg, headers, data=None): member in FancyURLopener 673 return self.http_error_302(url, fp, errcode, errmsg, headers, data) 677 return self.http_error_302(url, fp, errcode, errmsg, headers, data) 682 return self.http_error_302(url, fp, errcode, errmsg, headers, data)
|
D | urllib2.py | 600 def http_error_302(self, req, fp, code, msg, headers): member in HTTPRedirectHandler 656 http_error_301 = http_error_303 = http_error_307 = http_error_302
|
/external/python/cpython3/Lib/urllib/ |
D | request.py | 689 def http_error_302(self, req, fp, code, msg, headers): member in HTTPRedirectHandler 749 http_error_301 = http_error_303 = http_error_307 = http_error_302 2147 def http_error_302(self, url, fp, errcode, errmsg, headers, data=None): member in FancyURLopener 2195 return self.http_error_302(url, fp, errcode, errmsg, headers, data) 2199 return self.http_error_302(url, fp, errcode, errmsg, headers, data) 2204 return self.http_error_302(url, fp, errcode, errmsg, headers, data)
|
/external/python/cpython2/Lib/test/ |
D | test_urllib2.py | 965 h.http_error_302(req, MockFile(), 302, "Blah", 1006 self.assertRaises(urllib2.HTTPError, h.http_error_302, 1012 h.http_error_302(req, MockFile(), 302, "That's fine",
|
/external/python/cpython3/Lib/test/ |
D | test_urllib2.py | 1202 h.http_error_302(req, MockFile(), 302, "Blah", 1243 self.assertRaises(urllib.error.HTTPError, h.http_error_302, 1249 h.http_error_302(req, MockFile(), 302, "That's fine", 1262 h.http_error_302(req, MockFile(), 302, "That's fine",
|
/external/python/cpython2/Doc/library/ |
D | urllib2.rst | 694 .. method:: HTTPRedirectHandler.http_error_302(req, fp, code, msg, hdrs)
|
/external/python/cpython3/Doc/library/ |
D | urllib.request.rst | 861 .. method:: HTTPRedirectHandler.http_error_302(req, fp, code, msg, hdrs)
|