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