diff options
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/re.py | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -167,6 +167,7 @@ class RegexObject: regs = match(source, pos, end, 0) if not regs: break + self._num_regs = len(regs) i, j = regs[0] if i == j == lastmatch: # Empty match adjacent to previous match |