(self, *, tarinfo, status, type)
| 1614 | self.add_item(item, stats=self.stats) |
| 1615 | |
| 1616 | def process_dir(self, *, tarinfo, status, type): |
| 1617 | with self.create_helper(tarinfo, status, type) as (item, status): |
| 1618 | return status |
| 1619 | |
| 1620 | def process_fifo(self, *, tarinfo, status, type): |
| 1621 | with self.create_helper(tarinfo, status, type) as (item, status): |
no test coverage detected