Lines Matching refs:start
271 "start end target depth lasti")
285 offset - start index of operation within bytecode sequence
317 # Column: Instruction offset from start of code sequence
409 start = _parse_varint(iterator)*2
411 end = start + length
416 entries.append(_ExceptionTableEntry(start, end, target, depth, lasti))
439 for start, end, target, _, _ in exception_entries:
440 for i in range(start, end):
580 print(f" {entry.start} to {end} -> {entry.target} [{entry.depth}]{lasti}", file=file)
640 """Find the offsets in a byte code which are start of lines in the source.
645 for start, end, line in code.co_lines():
648 yield start, line