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 ezio.melotti
Recipients ezio.melotti, jmfauth, joncle
Date 2010-03-20.21:21:54
SpamBayes Score 0.00018170815
Marked as misclassified No
Message-id <1269120116.28.0.580278982564.issue8185@psf.upfronthosting.co.za>
In-reply-to
Content
What Jon said is correct, .group() is equivalent to .group(0) and returns the whole match. re.findall returns all the groups captured by each set of () as a list of strings (if there is 0 or 1 group) or a list of tuples (if there are more than 1).
History
Date User Action Args
2010-03-20 21:21:56ezio.melottisetrecipients: + ezio.melotti, jmfauth, joncle
2010-03-20 21:21:56ezio.melottisetmessageid: <1269120116.28.0.580278982564.issue8185@psf.upfronthosting.co.za>
2010-03-20 21:21:54ezio.melottilinkissue8185 messages
2010-03-20 21:21:54ezio.melotticreate