Return the length of the match as the number of matched query tokens.
(self)
| 416 | return self.qspan.end |
| 417 | |
| 418 | def len(self): |
| 419 | """ |
| 420 | Return the length of the match as the number of matched query tokens. |
| 421 | """ |
| 422 | return len(self.qspan) |
| 423 | |
| 424 | @property |
| 425 | def istart(self): |
no outgoing calls
no test coverage detected