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 mrabarnett
Recipients ceridwen, ezio.melotti, mrabarnett, serhiy.storchaka
Date 2015-02-27.21:31:54
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1425072714.92.0.317321544351.issue23541@psf.upfronthosting.co.za>
In-reply-to
Content
The problem is with the "(\w+\s*)+". \s* can match an empty string, so when matching a word it's like "(\w+)+".

If you have n letters, there are 2**n ways it could match, and if what follows never matches, it'll try all of them.

It _will_ finish, eventually...
History
Date User Action Args
2015-02-27 21:31:54mrabarnettsetrecipients: + mrabarnett, ezio.melotti, serhiy.storchaka, ceridwen
2015-02-27 21:31:54mrabarnettsetmessageid: <1425072714.92.0.317321544351.issue23541@psf.upfronthosting.co.za>
2015-02-27 21:31:54mrabarnettlinkissue23541 messages
2015-02-27 21:31:54mrabarnettcreate