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 Dennis Sweeney
Recipients Dennis Sweeney, alegrigoriev
Date 2021-04-01.04:12:25
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1617250345.75.0.672043998387.issue43686@roundup.psfhosted.org>
In-reply-to
Content
It's well-known that regular expressions can take exponential time. You can try searching this bug tracker for "re exponential". Common suggestions are to try a third-party module, or to write better regexes where possible. Note that the important bits of the re module are already implemented in C:

https://github.com/python/cpython/blob/master/Modules/_sre.c
History
Date User Action Args
2021-04-01 04:12:25Dennis Sweeneysetrecipients: + Dennis Sweeney, alegrigoriev
2021-04-01 04:12:25Dennis Sweeneysetmessageid: <1617250345.75.0.672043998387.issue43686@roundup.psfhosted.org>
2021-04-01 04:12:25Dennis Sweeneylinkissue43686 messages
2021-04-01 04:12:25Dennis Sweeneycreate