(tb)
| 1579 | self.index, self.positions)) |
| 1580 | |
| 1581 | def _get_code_position_from_tb(tb): |
| 1582 | code, instruction_index = tb.tb_frame.f_code, tb.tb_lasti |
| 1583 | return _get_code_position(code, instruction_index) |
| 1584 | |
| 1585 | def _get_code_position(code, instruction_index): |
| 1586 | if instruction_index < 0: |
no test coverage detected
searching dependent graphs…