MCPcopy Index your code
hub / github.com/python/cpython / _parse_varint

Function _parse_varint

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

Source from the content-addressed store, hash-verified

728 return UNKNOWN, ''
729
730def _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
739def _parse_exception_table(code):
740 iterator = iter(code.co_exceptiontable)

Callers 1

_parse_exception_tableFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…