Archive for September 10th, 2009

Python recrusion limit

When visiting reddit.com liked the idea and I tried to install the same application code itself to the server. The raising of this application I ran into a few problems. One problem was the RuntimeError: maximum recursion depth exceeded in cmp.
To’d increased this limit I tried the following:
root@test [/home/reddit/www/reddit/r2]# python
>>> import sys
>>> sys.setrecursionlimit(1500)
and that is [...]

1 Comment