Lines Matching refs:urlretrieve
153 """Tests urllib.urlretrieve using the network."""
155 def urlretrieve(self, *args):
156 return _open_with_retry(urllib.urlretrieve, *args)
160 file_location,info = self.urlretrieve("http://www.python.org/")
162 " urlretrieve is not a valid path")
166 " by urlretrieve failed")
173 file_location,info = self.urlretrieve("http://www.python.org/",
185 # Make sure header returned as 2nd value from urlretrieve is good.
186 file_location, header = self.urlretrieve("http://www.python.org/")
193 file_location, fileheaders = self.urlretrieve(logo)