(self, pattern, start, stop)
| 290 | """Matches only if the value is within the specified range.""" |
| 291 | |
| 292 | def __init__(self, pattern, start, stop): |
| 293 | super().__init__(pattern) |
| 294 | self.start = start |
| 295 | self.stop = stop |
| 296 | |
| 297 | def __repr__(self): |
| 298 | try: |