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 timehorse
Recipients jfrechet, mrabarnett, niemeyer, rsc, timehorse
Date 2008-09-24.18:14:26
SpamBayes Score 7.530612e-08
Marked as misclassified No
Message-id <1222280068.08.0.678182227323.issue1647489@psf.upfronthosting.co.za>
In-reply-to
Content
Hmmm.  This strikes me as a bug, beyond the realm of Issue 3262.  The
two items may be related, but the dropping of the 'a' seems like
unexpected behaviour that I doubt any current code is expecting to
occur.  Clearly, what is going on is that the Engine starts scanning at
the 'a', finds the Zero-Width match and, having found a match,
increments its pointer within the input string, thus skipping the 'a'
when it matches 'bc'.

If it is indeed a bug, I think this should be considered for inclusion
in Python 2.6 rather than being part of the new Engine Design in Issue
3626.  I think the solution would simply be to not increment the ptr
(which points to the input string) when findall / finditer encounters a
Zero-Width match.
History
Date User Action Args
2008-09-24 18:14:28timehorsesetrecipients: + timehorse, niemeyer, jfrechet, rsc, mrabarnett
2008-09-24 18:14:28timehorsesetmessageid: <1222280068.08.0.678182227323.issue1647489@psf.upfronthosting.co.za>
2008-09-24 18:14:27timehorselinkissue1647489 messages
2008-09-24 18:14:26timehorsecreate