MCPcopy Create free account
hub / github.com/RT-Thread/env-windows / _parse_varint

Function _parse_varint

tools/python-3.11.9-amd64/Lib/dis.py:395–402  ·  view source on GitHub ↗
(iterator)

Source from the content-addressed store, hash-verified

393 return UNKNOWN, ''
394
395def _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
404def _parse_exception_table(code):
405 iterator = iter(code.co_exceptiontable)

Callers 1

_parse_exception_tableFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected