(self, *, tarinfo, status, type)
| 1622 | return status |
| 1623 | |
| 1624 | def process_dev(self, *, tarinfo, status, type): |
| 1625 | with self.create_helper(tarinfo, status, type) as (item, status): |
| 1626 | item.rdev = os.makedev(tarinfo.devmajor, tarinfo.devminor) |
| 1627 | return status |
| 1628 | |
| 1629 | def process_symlink(self, *, tarinfo, status, type): |
| 1630 | with self.create_helper(tarinfo, status, type) as (item, status): |
no test coverage detected