(self)
| 89 | self.lengths.append(len(encoded)) |
| 90 | |
| 91 | def close(self): |
| 92 | self.output.close() |
| 93 | with open(self.lenpath, 'wb') as f: |
| 94 | pkl.dump(self.lengths, f) |
| 95 | |
| 96 | |
| 97 | def split_strings(strings, start, chr_lens): |
no outgoing calls
no test coverage detected