Perfect Recall

Posted by s on Nov. 29, 2008, 11:31 a.m.

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 story

Also, 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 18242160

18242032 18242096

18242032 18241968

Don't use nested functions with recursion if you don't want to create that nested function for every recursive call

Comments