commit | 212861c54fe7e3d3b43f27fdbdaedb453731dbe9 | [log] [tgz] |
---|---|---|
author | Guido van Rossum <guido@python.org> | Tue Feb 05 17:32:15 2008 +0000 |
committer | Guido van Rossum <guido@python.org> | Tue Feb 05 17:32:15 2008 +0000 |
tree | 6177ef92cb1f3151d3b482fcde02de71d67d7935 | |
parent | 727a59070d810fee4920697d560603775e7638dd [diff] [blame] |
In the experimental 'Scanner' feature, the group count was set wrong.
diff --git a/Lib/re.py b/Lib/re.py index d715154..1d9c987 100644 --- a/Lib/re.py +++ b/Lib/re.py
@@ -300,8 +300,8 @@ p.append(sre_parse.SubPattern(s, [ (SUBPATTERN, (len(p)+1, sre_parse.parse(phrase, flags))), ])) + s.groups = len(p)+1 p = sre_parse.SubPattern(s, [(BRANCH, (None, p))]) - s.groups = len(p) self.scanner = sre_compile.compile(p) def scan(self, string): result = []