|
|
|
Since you don't want your production code terminating with a recursion error, are you implementing your own stack now? That's the only way to monitor the situation and handle it gracefully that I'm aware of.
Brandon Corfman |
Homepage |
07/10/03 - 1:23 pm | #
|
|
We don't have infinite recursion in our production code 
We do execute user code which could include infinite recursion. If you set the recursion limit then you can catch this as a normal Python exception. If you *don't* set it then it terminates your process. :-o
Michael Foord |
Homepage |
07/10/03 - 3:25 pm | #
|
|
|
Commenting by HaloScan
|