If you were to remember every experience you've ever experienced as you experience them now and every thought you've ever thought as you think them now then you would be driven completely insane
And that is the basis of my next storyAlso, I've diagnosed the missing PY. The blue panda gave him soul, and so he was freed>>> def f(x=0): def g(y=0): print id(f),id(g) if x<3: f(x+1) g()>>> f()18242032 1824216018242032 1824209618242032 18241968Don't use nested functions with recursion if you don't want to create that nested function for every recursive call