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 jaredgrubb
Recipients jaredgrubb
Date 2013-01-17.23:49:03
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1358466543.42.0.996552051054.issue16990@psf.upfronthosting.co.za>
In-reply-to
Content
re.match matches, but the capture groups are empty. That's not possible.

Python 2.7.2 (default, Oct 11 2012, 20:14:37) 
[GCC 4.2.1 Compatible Apple Clang 4.0 (tags/Apple/clang-418.0.60)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import re
>>> re.match('.*', 'stuff').group()  # greedy matches and captures; cool.
'stuff'
>>> re.match('.*?', 'stuff').group() # nongreedy matches (cool) but doesnt capture (huh?)
''
History
Date User Action Args
2013-01-17 23:49:03jaredgrubbsetrecipients: + jaredgrubb
2013-01-17 23:49:03jaredgrubbsetmessageid: <1358466543.42.0.996552051054.issue16990@psf.upfronthosting.co.za>
2013-01-17 23:49:03jaredgrubblinkissue16990 messages
2013-01-17 23:49:03jaredgrubbcreate