[issue1448325] re search infinite loop

2009-02-08 Thread Matthew Barnett
Matthew Barnett added the comment: This problem has been addressed in issue #2636. Although the extra checks certainly aren't foolproof, some regular expressions which were slow won't be any more. -- nosy: +mrabarnett ___ Python tracker

[issue1448325] re search infinite loop

2008-01-09 Thread Christian Heimes
Christian Heimes added the comment: Duplicate and partly fixed -- nosy: +tiran resolution: -> duplicate status: open -> closed superseder: -> Check for signals during regular expression matches _ Tracker <[EMAIL PROTECTED]>

[issue1448325] re search infinite loop

2008-01-09 Thread Ralf Schmitt
Ralf Schmitt added the comment: You're being a victim of two issues here: 1.regular expression matching can take a long time. see: http://bugs.python.org/issue1662581 2. regular expression matching was not interruptible: http://bugs.python.org/issue846388 -- nosy: +schmir versions: +Py