[issue35932] Interpreter gets stuck while applying a compiled regex pattern

2019-02-07 Thread SilentGhost
SilentGhost added the comment: In your variant 2 you're not using re.IGNORECASE flag, if you do you're likely to encounter the same behaviour as for the compiled pattern. At least I do on python3.6 -- components: +Regular Expressions nosy: +SilentGhost, ezio.melotti, mrabarnett type:

[issue35932] Interpreter gets stuck while applying a compiled regex pattern

2019-02-07 Thread Rémi Lapeyre
Change by Rémi Lapeyre : -- nosy: +remi.lapeyre ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[issue35932] Interpreter gets stuck while applying a compiled regex pattern

2019-02-07 Thread Sateesh Kumar
New submission from Sateesh Kumar : The python interpreter gets stuck while applying a compiled regex pattern against a given string. The regex matching doesn't get stuck if uncompiled regex pattern is used, or if the flag "re.IGNORECASE" is not used for regex match. Below code snippets giv