Python Mode : maximum recursion depth

Hi @Grusat, good luck with your chess engine :slight_smile:

I guess @monsktone example contains this, but I’ll post to make it easier for other people to find it :slight_smile:

To change the recursion limit, you have to import sys

import sys
sys.setrecursionlimit(1000) 
print sys.recursionlimit
2 Likes