You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Issue 1366311 talks about releasing the GIL in the "re" module, but points to a problem which could occur with scanner objects which are shared across threads.
Unfortunately this module has just that problem. :-(
I'm currently attempting to fix it, but it's proving to be surprisingly difficult. When the iterator terminates in a thread, it's being collected, which causes a failure later when another thread tries to use it.
Revision 4dc5f7f181 didn't fix it.
The text was updated successfully, but these errors were encountered:
Original report by Anonymous.
Issue 1366311 talks about releasing the GIL in the "re" module, but points to a problem which could occur with scanner objects which are shared across threads.
Unfortunately this module has just that problem. :-(
I'm currently attempting to fix it, but it's proving to be surprisingly difficult. When the iterator terminates in a thread, it's being collected, which causes a failure later when another thread tries to use it.
Revision 4dc5f7f181 didn't fix it.
The text was updated successfully, but these errors were encountered: