Open the resulting archive as TarFile. Call after `with`.
(self, **kwargs)
| 3655 | self.tar_w.addfile(tarinfo, fileobj) |
| 3656 | |
| 3657 | def open(self, **kwargs): |
| 3658 | """Open the resulting archive as TarFile. Call after `with`.""" |
| 3659 | bio = io.BytesIO(self.contents) |
| 3660 | return tarfile.open(fileobj=bio, **kwargs) |
| 3661 | |
| 3662 | # Under WASI, `os_helper.can_symlink` is False to make |
| 3663 | # `skip_unless_symlink` skip symlink tests. " |
no outgoing calls
no test coverage detected