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 serhiy.storchaka
Recipients Lucretiel, ezio.melotti, mrabarnett, serhiy.storchaka
Date 2014-04-04.18:22:58
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <3837898.Ef8258QMgz@raxxla>
In-reply-to <1395351472.15.0.748115651158.issue20998@psf.upfronthosting.co.za>
Content
Both patch are almost equivalent (my patch is much simpler but perhaps 
Matthew's approach is more correct in long perspective).

Unfortunately Rietvield doesn't work with Matthew's patch, so I have added my 
comments here.

> -                (!ctx->match_all || ctx->ptr == state->end)) {
> +                ctx->ptr == state->end) {

Why this check is not needed anymore?

> -                    status = SRE(match)(state, pattern + 2*prefix_skip);
> +                    status = SRE(match)(state, pattern + 2*prefix_skip, 
state->match_all);

> -            status = SRE(match)(state, pattern + 2);
> +            status = SRE(match)(state, pattern + 2, state->match_all);

state->match_all is used but it is never initialized.
History
Date User Action Args
2014-04-04 18:22:59serhiy.storchakasetrecipients: + serhiy.storchaka, ezio.melotti, mrabarnett, Lucretiel
2014-04-04 18:22:59serhiy.storchakalinkissue20998 messages
2014-04-04 18:22:58serhiy.storchakacreate