MatchesIterator is False when word hasn't been replaced yet
(self)
| 231 | self.end: int | None = None |
| 232 | |
| 233 | def __nonzero__(self) -> bool: |
| 234 | """MatchesIterator is False when word hasn't been replaced yet""" |
| 235 | return self.index != -1 |
| 236 | |
| 237 | def __bool__(self) -> bool: |
| 238 | return self.index != -1 |
nothing calls this directly
no outgoing calls
no test coverage detected