download: maxRecurDeep.py
#!/usr/bin/python2.3

def maxRec(n=0):
	print n
	maxRec(n+1)

maxRec() # max = 999

# RunTimeError: maximun recursion depth exceeded

Copyleft 2006 Juanjo Conti