(self, p)
| 62 | self.create_symlink(p.joinpath('brokenLinkLoop'), 'brokenLinkLoop') |
| 63 | |
| 64 | def readtext(self, p): |
| 65 | with p.zip_file.open(str(p), 'r') as f: |
| 66 | f = io.TextIOWrapper(f, encoding='utf-8') |
| 67 | return f.read() |
| 68 | |
| 69 | def readbytes(self, p): |
| 70 | with p.zip_file.open(str(p), 'r') as f: |