Home | History | Annotate | Download | only in test

Lines Matching full:tobj

1489         with tarfile.open(tmpname, self.mode) as tobj:
1490 tobj.add(self.file_path)
1492 with self.taropen(tmpname) as tobj:
1493 names = tobj.getnames()
1498 with tarfile.open(tmpname, self.mode) as tobj:
1499 tobj.add(self.file_path)
1502 tobj = tarfile.open(tmpname, self.mode)
1504 with self.taropen(tmpname) as tobj:
1505 names = tobj.getnames()
1510 with self.taropen(tmpname, "x") as tobj:
1511 tobj.add(self.file_path)
1513 with self.taropen(tmpname) as tobj:
1514 names = tobj.getnames()
1519 with self.taropen(tmpname, "x") as tobj:
1520 tobj.add(self.file_path)
1526 with self.taropen(tmpname) as tobj:
1527 names = tobj.getnames()