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

Method jump_target

Lib/dis.py:422–427  ·  view source on GitHub ↗

Bytecode index of the jump target if this is a jump operation. Otherwise return None.

(self)

Source from the content-addressed store, hash-verified

420
421 @property
422 def jump_target(self):
423 """Bytecode index of the jump target if this is a jump operation.
424
425 Otherwise return None.
426 """
427 return _get_jump_target(self.opcode, self.arg, self.offset)
428
429 @property
430 def is_jump_target(self):

Callers

nothing calls this directly

Calls 1

_get_jump_targetFunction · 0.85

Tested by

no test coverage detected