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 pitrou
Recipients effbot, flox, pitrou
Date 2009-12-30.16:38:57
SpamBayes Score 1.6172442e-05
Marked as misclassified No
Message-id <1262191139.1.0.382685361437.issue7462@psf.upfronthosting.co.za>
In-reply-to
Content
Looking a bit more at the patch:

+                /* miss: check if previous character is part of pattern */
+                if (!(mask & (1 << (s[i-1] & 0x1F))))

From what I understand, this should be s[i-m]. Same here:

+                /* skip: check if previous character is part of pattern */
+                if (!(mask & (1 << (s[i-1] & 0x1F))))
History
Date User Action Args
2009-12-30 16:38:59pitrousetrecipients: + pitrou, effbot, flox
2009-12-30 16:38:59pitrousetmessageid: <1262191139.1.0.382685361437.issue7462@psf.upfronthosting.co.za>
2009-12-30 16:38:58pitroulinkissue7462 messages
2009-12-30 16:38:57pitroucreate