Return the length of the match as the number of matched high tokens.
(self)
| 430 | return self.ispan.end |
| 431 | |
| 432 | def hilen(self): |
| 433 | """ |
| 434 | Return the length of the match as the number of matched high tokens. |
| 435 | """ |
| 436 | return len(self.hispan) |
| 437 | |
| 438 | def __contains__(self, other): |
| 439 | """ |
no outgoing calls
no test coverage detected