MCPcopy Index your code
hub / github.com/RustPython/RustPython / _parse_varint

Function _parse_varint

Lib/dis.py:724–731  ·  view source on GitHub ↗
(iterator)

Source from the content-addressed store, hash-verified

722 return UNKNOWN, ''
723
724def _parse_varint(iterator):
725 b = next(iterator)
726 val = b & 63
727 while b&64:
728 val <<= 6
729 b = next(iterator)
730 val |= b&63
731 return val
732
733def _parse_exception_table(code):
734 iterator = iter(code.co_exceptiontable)

Callers 1

_parse_exception_tableFunction · 0.85

Calls 1

nextFunction · 0.85

Tested by

no test coverage detected