(self, **kwargs)
| 3584 | ... # `tar` is now a TarFile with 'filename' in it! |
| 3585 | """ |
| 3586 | def __init__(self, **kwargs): |
| 3587 | self.bio = io.BytesIO() |
| 3588 | self.tar_kwargs = dict(kwargs) |
| 3589 | |
| 3590 | def __enter__(self): |
| 3591 | self.tar_w = tarfile.TarFile(mode='w', fileobj=self.bio, **self.tar_kwargs) |
no outgoing calls
no test coverage detected