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.

classification
Title: regex.ENHANCEMATCH crashes interpreter
Type: behavior Stage: resolved
Components: Regular Expressions Versions:
process
Status: closed Resolution: third party
Dependencies: Superseder:
Assigned To: Nosy List: Rex Dwyer, SilentGhost, ezio.melotti, mrabarnett
Priority: normal Keywords:

Created on 2016-04-15 18:51 by Rex Dwyer, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Messages (2)
msg263515 - (view) Author: Rex Dwyer (Rex Dwyer) Date: 2016-04-15 18:51
regex.findall(r'((brown)|(lazy)){1<=e<=3} ((dog)|(fox)){1<=e<=3}',
              'The quick borwn fax jumped over the lzy hog',
              regex.ENHANCEMATCH)

crashes interpreter.

regex.__version__ =>  2.4.85

python version
'3.4.2 (v3.4.2:ab2c023a9432, Oct  6 2014, 22:15:05) [MSC v.1600 32 bit (Intel)]'
msg263517 - (view) Author: SilentGhost (SilentGhost) * (Python triager) Date: 2016-04-15 19:01
regex module is not part of the standard library and issues with it should be reported on its bug tracker https://bitbucket.org/mrabarnett/mrab-regex
History
Date User Action Args
2022-04-11 14:58:29adminsetgithub: 70959
2016-04-15 19:01:56SilentGhostsetstatus: open -> closed

type: crash -> behavior

nosy: + SilentGhost
messages: + msg263517
resolution: third party
stage: resolved
2016-04-15 18:51:46Rex Dwyercreate