Searched refs:origin_req_host (Results 1 – 6 of 6) sorted by relevance
/third_party/python/Lib/urllib/ |
D | request.py | 320 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/ |
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 | 190 .. 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/ |
D | test_urllib2.py | 1152 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/ |
D | cookiejar.py | 738 if not domain_match(req_host, reach(request.origin_req_host)):
|
/third_party/python/Misc/ |
D | HISTORY | 5115 changing the call to get_origin_req_host() to origin_req_host.
|