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 = []