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 abacabadabacaba
Recipients abacabadabacaba, ezio.melotti, mrabarnett
Date 2015-03-17.17:17:06
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1426612626.66.0.267835433945.issue23691@psf.upfronthosting.co.za>
In-reply-to
Content
Iterator returned by re.finditer includes a SRE_STATE value, which is not designed to be used concurrently. However, it is possible to call __next__ on such iterator while another such call is in progress, e.g. from a signal handler. This may result in corruption of SRE_STATE structure.
History
Date User Action Args
2015-03-17 17:17:06abacabadabacabasetrecipients: + abacabadabacaba, ezio.melotti, mrabarnett
2015-03-17 17:17:06abacabadabacabasetmessageid: <1426612626.66.0.267835433945.issue23691@psf.upfronthosting.co.za>
2015-03-17 17:17:06abacabadabacabalinkissue23691 messages
2015-03-17 17:17:06abacabadabacabacreate