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 effbot
Recipients effbot, gvanrossum, sonnq
Date 2008-01-02.11:17:43
SpamBayes Score 0.0020258187
Marked as misclassified No
Message-id <1199272664.49.0.151851078289.issue1700@psf.upfronthosting.co.za>
In-reply-to
Content
Looks like the wrong execution flags are being passed to the function
that creates the actual pattern object; the SRE compiler does the right
thing, but the engine isn't running with the right flags in the last
case.  Changing the call to _sre.compile in sre_compile.py to:

    return _sre.compile(
        pattern, flags | p.pattern.flags, code,
        p.pattern.groups-1,
        groupindex, indexgroup
        )

should do the trick, I think.  (got no time to fix my broken Python SVN
setup right now, but if someone wants to verify this and add the
necessary tests to the test suite, be my guest).
History
Date User Action Args
2008-01-02 11:17:44effbotsetspambayes_score: 0.00202582 -> 0.0020258187
recipients: + effbot, gvanrossum, sonnq
2008-01-02 11:17:44effbotsetspambayes_score: 0.00202582 -> 0.00202582
messageid: <1199272664.49.0.151851078289.issue1700@psf.upfronthosting.co.za>
2008-01-02 11:17:44effbotlinkissue1700 messages
2008-01-02 11:17:43effbotcreate
Morty Proxy This is a proxified and sanitized view of the page, visit original site.