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 cronkd
Recipients cronkd, ezio.melotti, mrabarnett
Date 2013-10-21.03:26:23
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1382325984.24.0.110925786536.issue19322@psf.upfronthosting.co.za>
In-reply-to
Content
Python crashes while executing the following code using the new regex module. Have I made a mistake?

import regex as re
rx = re.compile(r'\bt(est){i<2}', flags=re.V1)
print "Prints here"
rx.findall("Some text") # Python crashes
print "Fails to print"

I get the same results using 64-bit and 32-bit Python on Windows 7 (64bit) when using regex-2013-10-04 and regex-2013-08-04. However, the code does not crash when using regex-2013-03-11.
History
Date User Action Args
2013-10-21 03:26:24cronkdsetrecipients: + cronkd, ezio.melotti, mrabarnett
2013-10-21 03:26:24cronkdsetmessageid: <1382325984.24.0.110925786536.issue19322@psf.upfronthosting.co.za>
2013-10-21 03:26:24cronkdlinkissue19322 messages
2013-10-21 03:26:23cronkdcreate