Home
last modified time | relevance | path

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

/third_party/python/Lib/urllib/
Drequest.py320 origin_req_host=None, unverifiable=False, argument
330 if origin_req_host is None:
331 origin_req_host = request_host(self)
332 self.origin_req_host = origin_req_host
684 origin_req_host=req.origin_req_host,
/third_party/python/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.rst190 .. class:: Request(url, data=None, headers={}, origin_req_host=None, unverifiable=False, method=Non…
230 *origin_req_host* should be the request-host of the origin
491 .. attribute:: Request.origin_req_host
/third_party/python/Lib/test/
Dtest_urllib2.py1152 self.assertEqual(req.origin_req_host, "example.com")
1210 req = Request(from_url, origin_req_host="example.com")
1222 req = Request(from_url, origin_req_host="example.com")
1950 self.assertEqual("www.python.org", self.get.origin_req_host)
/third_party/python/Lib/http/
Dcookiejar.py738 if not domain_match(req_host, reach(request.origin_req_host)):
/third_party/python/Misc/
DHISTORY5115 changing the call to get_origin_req_host() to origin_req_host.