Home | History | Annotate | Download | only in test

Lines Matching refs:file_location

160         file_location,info = self.urlretrieve("http://www.python.org/")
161 self.assertTrue(os.path.exists(file_location), "file location returned by"
163 FILE = file(file_location)
169 os.unlink(file_location)
173 file_location,info = self.urlretrieve("http://www.python.org/",
175 self.assertEqual(file_location, test_support.TESTFN)
176 self.assertTrue(os.path.exists(file_location))
177 FILE = file(file_location)
182 os.unlink(file_location)
186 file_location, header = self.urlretrieve("http://www.python.org/")
187 os.unlink(file_location)
193 file_location, fileheaders = self.urlretrieve(logo)
194 os.unlink(file_location)