Private module function.
(minor)
| 321 | return map_2 |
| 322 | |
| 323 | def _decode_map_1(minor): |
| 324 | 'Private module function.' |
| 325 | map_1 = [] |
| 326 | for byte in map(ord, minor): |
| 327 | for shift in xrange(6, -2, -2): |
| 328 | map_1.append((byte >> shift) & 3) |
| 329 | return map_1 |
| 330 | |
| 331 | def _decode_map_2(major): |
| 332 | 'Private module function.' |
no test coverage detected