(self, **kwargs)
| 3601 | ... # `tar` is now a TarFile with 'filename' in it! |
| 3602 | """ |
| 3603 | def __init__(self, **kwargs): |
| 3604 | self.bio = io.BytesIO() |
| 3605 | self.tar_kwargs = dict(kwargs) |
| 3606 | |
| 3607 | def __enter__(self): |
| 3608 | self.tar_w = tarfile.TarFile(mode='w', fileobj=self.bio, **self.tar_kwargs) |
no outgoing calls
no test coverage detected