Return the maximal positions Span representing this match from start to end as query positions, including matched and unmatched tokens.
(self)
| 536 | ) |
| 537 | |
| 538 | def qregion(self): |
| 539 | """ |
| 540 | Return the maximal positions Span representing this match from |
| 541 | start to end as query positions, including matched and unmatched tokens. |
| 542 | """ |
| 543 | return Span(self.qstart, self.qend) |
| 544 | |
| 545 | def qregion_len(self): |
| 546 | """ |
no test coverage detected