Searched refs:fullurl (Results 1 – 2 of 2) sorted by relevance
/third_party/python/Lib/urllib/ |
D | request.py | 500 def open(self, fullurl, data=None, timeout=socket._GLOBAL_DEFAULT_TIMEOUT): argument 502 if isinstance(fullurl, str): 503 req = Request(fullurl, data) 505 req = fullurl 1760 def open(self, fullurl, data=None): argument 1762 fullurl = unwrap(_to_bytes(fullurl)) 1763 fullurl = quote(fullurl, safe="%/:=&?~#+!$,;'@()*[]|") 1764 if self.tempcache and fullurl in self.tempcache: 1765 filename, headers = self.tempcache[fullurl] 1767 return addinfourl(fp, headers, fullurl) [all …]
|
/third_party/python/Doc/library/ |
D | urllib.request.rst | 90 .. audit-event:: urllib.Request fullurl,data,headers,method urllib.request.urlopen 93 ``urllib.Request`` with arguments ``fullurl``, ``data``, ``headers``, 1434 .. method:: open(fullurl, data=None) 1436 Open *fullurl* using the appropriate protocol. This method sets up cache and 1442 This method always quotes *fullurl* using :func:`~urllib.parse.quote`. 1444 .. method:: open_unknown(fullurl, data=None)
|