Searched refs:origin_req_host (Results 1 – 9 of 9) sorted by relevance
/external/python/cpython2/Lib/ |
D | urllib2.py | 227 origin_req_host=None, unverifiable=False): argument 241 if origin_req_host is None: 242 origin_req_host = request_host(self) 243 self.origin_req_host = origin_req_host 309 return self.origin_req_host 591 origin_req_host=req.get_origin_req_host(),
|
/external/python/cpython3/Lib/urllib/ |
D | request.py | 318 origin_req_host=None, unverifiable=False, argument 328 if origin_req_host is None: 329 origin_req_host = request_host(self) 330 self.origin_req_host = origin_req_host 682 origin_req_host=req.origin_req_host,
|
/external/python/cpython3/Doc/library/ |
D | http.cookiejar.rst | 166 and :attr:`origin_req_host` attribute as documented by 171 *request* object needs :attr:`origin_req_host` attribute. Dependency on a 190 :meth:`unverifiable`, and :attr:`origin_req_host` attribute, as documented 197 *request* object needs :attr:`origin_req_host` attribute. Dependency on a
|
D | urllib.request.rst | 185 .. class:: Request(url, data=None, headers={}, origin_req_host=None, unverifiable=False, method=Non… 225 *origin_req_host* should be the request-host of the origin 486 .. attribute:: Request.origin_req_host
|
/external/python/cpython3/Lib/test/ |
D | test_urllib2.py | 1150 self.assertEqual(req.origin_req_host, "example.com") 1208 req = Request(from_url, origin_req_host="example.com") 1220 req = Request(from_url, origin_req_host="example.com") 1940 self.assertEqual("www.python.org", self.get.origin_req_host)
|
/external/python/cpython2/Lib/test/ |
D | test_urllib2.py | 971 req = Request(from_url, origin_req_host="example.com") 983 req = Request(from_url, origin_req_host="example.com")
|
/external/python/cpython2/Doc/library/ |
D | urllib2.rst | 154 .. class:: Request(url[, data][, headers][, origin_req_host][, unverifiable]) 179 *origin_req_host* should be the request-host of the origin transaction, as
|
/external/python/cpython3/Lib/http/ |
D | cookiejar.py | 730 if not domain_match(req_host, reach(request.origin_req_host)):
|
/external/python/cpython3/Misc/ |
D | HISTORY | 5115 changing the call to get_origin_req_host() to origin_req_host.
|