(self, s)
| 1173 | i += 1 |
| 1174 | |
| 1175 | def __init__(self, s): |
| 1176 | # type: (str) -> None |
| 1177 | self._s = s |
| 1178 | i, ibl = type(self).huffman_encode(s) |
| 1179 | self._encoded = type(self).huffman_conv2str(i, ibl) |
| 1180 | |
| 1181 | def __str__(self): |
| 1182 | # type: () -> str |
nothing calls this directly
no test coverage detected