Lines Matching refs:file_location
164 file_location,info = self.urlretrieve("http://www.example.com/")
165 self.assertTrue(os.path.exists(file_location), "file location returned by"
167 FILE = file(file_location)
173 os.unlink(file_location)
177 file_location,info = self.urlretrieve("http://www.example.com/",
179 self.assertEqual(file_location, test_support.TESTFN)
180 self.assertTrue(os.path.exists(file_location))
181 FILE = file(file_location)
186 os.unlink(file_location)
190 file_location, header = self.urlretrieve("http://www.example.com/")
191 os.unlink(file_location)
197 file_location, fileheaders = self.urlretrieve(logo)
198 os.unlink(file_location)