(iterator)
| 393 | return UNKNOWN, '' |
| 394 | |
| 395 | def _parse_varint(iterator): |
| 396 | b = next(iterator) |
| 397 | val = b & 63 |
| 398 | while b&64: |
| 399 | val <<= 6 |
| 400 | b = next(iterator) |
| 401 | val |= b&63 |
| 402 | return val |
| 403 | |
| 404 | def _parse_exception_table(code): |
| 405 | iterator = iter(code.co_exceptiontable) |
no outgoing calls
no test coverage detected