Searched refs:taropen (Results 1 – 2 of 2) sorted by relevance
/external/python/cpython2/Lib/test/ |
D | test_tarfile.py | 227 taropen = tarfile.TarFile.gzopen variable in GzipListTest 233 taropen = tarfile.TarFile.bz2open variable in Bz2ListTest 326 taropen = tarfile.TarFile.taropen variable in MiscReadTest 354 tar = self.taropen(tmpname, 'q') 356 tar = self.taropen(tmpname, 'rw') 358 tar = self.taropen(tmpname, '') 1772 taropen = tarfile.TarFile.gzopen variable in GzipMiscReadTest 1788 taropen = tarfile.TarFile.bz2open variable in Bz2MiscReadTest
|
/external/python/cpython2/Lib/ |
D | tarfile.py | 1713 return cls.taropen(name, mode, fileobj, **kwargs) 1718 def taropen(cls, name, mode="r", fileobj=None, **kwargs): member in TarFile 1747 t = cls.taropen(name, mode, fileobj, **kwargs) 1778 t = cls.taropen(name, mode, fileobj, **kwargs) 2576 self.tarfile = TarFile.taropen(file, mode)
|