(tb)
| 1555 | self.index, self.positions)) |
| 1556 | |
| 1557 | def _get_code_position_from_tb(tb): |
| 1558 | code, instruction_index = tb.tb_frame.f_code, tb.tb_lasti |
| 1559 | return _get_code_position(code, instruction_index) |
| 1560 | |
| 1561 | def _get_code_position(code, instruction_index): |
| 1562 | if instruction_index < 0: |
no test coverage detected