(self, path)
| 1617 | ### shutil.make_archive |
| 1618 | |
| 1619 | def _tarinfo(self, path): |
| 1620 | with tarfile.open(path) as tar: |
| 1621 | names = tar.getnames() |
| 1622 | names.sort() |
| 1623 | return tuple(names) |
| 1624 | |
| 1625 | def _create_files(self, base_dir='dist'): |
| 1626 | # creating something to tar |
no test coverage detected