This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author veky
Recipients docs@python, rondevous, veky
Date 2021-08-19.11:28:18
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1629372498.13.0.801792612755.issue44940@roundup.psfhosted.org>
In-reply-to
Content
Ah, now I see. When some_match.group(0) is called, the whole match is returned. So match can be considered kinda group (quasigroup?:). I see how it can be confusing: python usually starts indexing at 0, and someone might think that a .group(0) would be included in "a list of groups" returned.

I'm not sure how best to fix it. Maybe: Alternatively, if grouping parentheses are present in the pattern, return a list of groups captured by them...
History
Date User Action Args
2021-08-19 11:28:18vekysetrecipients: + veky, docs@python, rondevous
2021-08-19 11:28:18vekysetmessageid: <1629372498.13.0.801792612755.issue44940@roundup.psfhosted.org>
2021-08-19 11:28:18vekylinkissue44940 messages
2021-08-19 11:28:18vekycreate