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 eric_noyau
Recipients
Date 2005-11-25.13:57:15
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
In a multi-threaded program that does lots of regular
expression searching, some of them on very long strings
with complex regex we've noticed that everything stops
when a regular expression is searching.

One of the issue is that the re engine does not release
the interpreter lock while it is running. All the
other threads are therefore blocked for the entire time
it takes to do the regular expression search.

See the thread in python-dev about it:

http://mail.python.org/pipermail/python-dev/2005-November/058316.html

History
Date User Action Args
2007-08-23 15:44:46adminlinkissue1366311 messages
2007-08-23 15:44:46admincreate