Home
last modified time | relevance | path

Searched refs:origin_req_host (Results 1 – 9 of 9) sorted by relevance

/external/python/cpython2/Lib/
Durllib2.py227 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/
Drequest.py318 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/
Dhttp.cookiejar.rst166 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
Durllib.request.rst185 .. 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/
Dtest_urllib2.py1150 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/
Dtest_urllib2.py971 req = Request(from_url, origin_req_host="example.com")
983 req = Request(from_url, origin_req_host="example.com")
/external/python/cpython2/Doc/library/
Durllib2.rst154 .. 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/
Dcookiejar.py730 if not domain_match(req_host, reach(request.origin_req_host)):
/external/python/cpython3/Misc/
DHISTORY5115 changing the call to get_origin_req_host() to origin_req_host.