(iterator)
| 728 | return UNKNOWN, '' |
| 729 | |
| 730 | def _parse_varint(iterator): |
| 731 | b = next(iterator) |
| 732 | val = b & 63 |
| 733 | while b&64: |
| 734 | val <<= 6 |
| 735 | b = next(iterator) |
| 736 | val |= b&63 |
| 737 | return val |
| 738 | |
| 739 | def _parse_exception_table(code): |
| 740 | iterator = iter(code.co_exceptiontable) |
no outgoing calls
no test coverage detected
searching dependent graphs…