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 jpakkane
Recipients ezio.melotti, jpakkane, mrabarnett
Date 2017-04-24.19:55:24
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1493063725.04.0.236635812033.issue30148@psf.upfronthosting.co.za>
In-reply-to
Content
This is slow even when ignores is set to a non-empty value. It's not as slow but the real slowdown is in the whitespace regex. Here is a minimal sample:

input = '                              abc'
re.search(r'(\s+)+d', input)
History
Date User Action Args
2017-04-24 19:55:25jpakkanesetrecipients: + jpakkane, ezio.melotti, mrabarnett
2017-04-24 19:55:25jpakkanesetmessageid: <1493063725.04.0.236635812033.issue30148@psf.upfronthosting.co.za>
2017-04-24 19:55:25jpakkanelinkissue30148 messages
2017-04-24 19:55:24jpakkanecreate