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

Function _is_backward_jump

Lib/dis.py:749–752  ·  view source on GitHub ↗
(op)

Source from the content-addressed store, hash-verified

747 return entries
748
749def _is_backward_jump(op):
750 return opname[op] in ('JUMP_BACKWARD',
751 'JUMP_BACKWARD_NO_INTERRUPT',
752 'END_ASYNC_FOR') # Not really a jump, but it has a "target"
753
754def _get_instructions_bytes(code, linestarts=None, line_offset=0, co_positions=None,
755 original_code=None, arg_resolver=None):

Callers 2

_get_jump_targetFunction · 0.85
offset_from_jump_argMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected