Private module function.
(major)
| 329 | return map_1 |
| 330 | |
| 331 | def _decode_map_2(major): |
| 332 | 'Private module function.' |
| 333 | map_2 = [None] * 256 |
| 334 | for byte, index in enumerate(map(ord, major)): |
| 335 | map_2[index] = chr(byte) |
| 336 | return map_2 |
| 337 | |
| 338 | def _encode(string, map_1, map_2): |
| 339 | 'Private module function.' |
no test coverage detected