예제 #1
0
파일: download.py 프로젝트: skymysky/uyuni
 def __init__(self, url, filename, opts, curl_cache, parent):
     self.curl_cache = curl_cache
     self.parent = parent
     (url, parts) = opts.urlparser.parse(url, opts)
     (scheme, host, path, parm, query, frag) = parts
     opts.find_proxy(url, scheme)
     PyCurlFileObject.__init__(self, str(url), filename, opts)
예제 #2
0
 def __init__(self, url, filename, opts, curl_cache):
     self.curl_cache = curl_cache
     PyCurlFileObject.__init__(self, url, filename, opts)
예제 #3
0
 def __init__(self, url, filename, opts, curl_cache):
     self.curl_cache = curl_cache
     PyCurlFileObject.__init__(self, url, filename, opts)
예제 #4
0
 def __init__(self, url, filename, opts, curl_cache, parent):
     self.curl_cache = curl_cache
     self.parent = parent
     PyCurlFileObject.__init__(self, url, filename, opts)
예제 #5
0
파일: download.py 프로젝트: m47ik/uyuni
 def __init__(self, url, filename, opts, curl_cache, parent):
     self.curl_cache = curl_cache
     self.parent = parent
     PyCurlFileObject.__init__(self, str(url), filename, opts)