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

Function _is_backward_jump

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

Source from the content-addressed store, hash-verified

753 return entries
754
755def _is_backward_jump(op):
756 return opname[op] in ('JUMP_BACKWARD',
757 'JUMP_BACKWARD_NO_INTERRUPT',
758 'END_ASYNC_FOR') # Not really a jump, but it has a "target"
759
760def _get_instructions_bytes(code, linestarts=None, line_offset=0, co_positions=None,
761 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

Used in the wild real call sites across dependent graphs

searching dependent graphs…