You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if it [groupN arg] is in the inclusive range [1..99], it is the string matching the corresponding parenthesized group.
Unlike \1..\99 notation, .group() is not constrained by 99.
It was constrained up to Python 3.4 (AssertionError: sorry, but this version only supports 100 named groups)
but not since 3.5 (9baa5b2, https://bugs.python.org/issue22437):
Documentation
https://docs.python.org/3.14/library/re.html#re.Match.group
Unlike
\1..\99notation, .group() is not constrained by 99.It was constrained up to Python 3.4 (
AssertionError: sorry, but this version only supports 100 named groups)but not since 3.5 (9baa5b2, https://bugs.python.org/issue22437):
Linked PRs