Searched refs:fullurl (Results 1 – 2 of 2) sorted by relevance
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
D | urllib.py | 175 def open(self, fullurl, data=None): argument 177 fullurl = unwrap(toBytes(fullurl)) 180 fullurl = quote(fullurl, safe="%/:=&?~#+!$,;'@()*[]|") 181 if self.tempcache and fullurl in self.tempcache: 182 filename, headers = self.tempcache[fullurl] 184 return addinfourl(fp, headers, fullurl) 185 urltype, url = splittype(fullurl) 192 url = (host, fullurl) # Signal special case to open_*() 200 return self.open_unknown_proxy(proxy, fullurl, data) 202 return self.open_unknown(fullurl, data) [all …]
|
D | urllib2.py | 376 def open(self, fullurl, data=None, timeout=socket._GLOBAL_DEFAULT_TIMEOUT): argument 378 if isinstance(fullurl, basestring): 379 req = Request(fullurl, data) 381 req = fullurl
|