Searched refs:exception_entries (Results 1 – 1 of 1) sorted by relevance
/external/python/cpython3/Lib/ |
D | dis.py | 511 def print_exception_table(self, exception_entries): argument 513 if exception_entries: 515 for entry in exception_entries: 763 exception_entries = _parse_exception_table(co) 764 labels_map = _make_labels_map(co.co_code, exception_entries=exception_entries) 776 exception_entries=exception_entries, co_positions=co.co_positions(), 794 def _make_labels_map(original_code, exception_entries=()): argument 797 for start, end, target, _, _ in exception_entries: 803 for e in exception_entries: 825 *, line_offset=0, exception_entries=(), argument [all …]
|