Comment 4 for bug 487052

Revision history for this message
Chris Andreae (chris-neko) wrote :

 The bug is in an needlessly tail-recursive function subdiv() in cspsubdiv.py, which overflows the execution stack on large input. I attach a patch which simply converts it to a loop. The original control-flow is preserved, including the odd termination by exception.