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 mrabarnett
Recipients jfrechet, mrabarnett, niemeyer, rsc, timehorse
Date 2008-09-24.21:14:13
SpamBayes Score 7.351158e-05
Marked as misclassified No
Message-id <1222290854.17.0.901142226175.issue1647489@psf.upfronthosting.co.za>
In-reply-to
Content
What about r'(^z*)|(q*)|(\w+)'? I could imagine that the first group
could match only at the start of the string, but if the second group
doesn't have that restriction then it could match the second time, and
only after that could the third match, if you see what I mean. (The
previous example had (^q*) so it couldn't match because the first group
has already matched at the start of the string and we've already
advanced beyond that, even though by no characters!)
History
Date User Action Args
2008-09-24 21:14:14mrabarnettsetrecipients: + mrabarnett, niemeyer, jfrechet, rsc, timehorse
2008-09-24 21:14:14mrabarnettsetmessageid: <1222290854.17.0.901142226175.issue1647489@psf.upfronthosting.co.za>
2008-09-24 21:14:13mrabarnettlinkissue1647489 messages
2008-09-24 21:14:13mrabarnettcreate