I have a script I wrote in python and it works fine but I was curious to see if I could speed it up. It basically is recursive script.
If I run it within normal python 2.7, it takes about 30 seconds. When I run the same thing using pypy than I get the following error:
RuntimeError: maximum recursion depth exceeded
I'm not sure what pypy is doing differently because I'm not modifying the script.
Can anyone help me understand what is going on?
Update: ok I figured it out. Increasing the limit helped but I think I was running the wrong file. I found a file under the bin directory called py.py and was using that. I'm not sure what the file does but its slower than normal python. I had to search and find 'pypy-c' seems to work now.