Benjamin Goldberg <[EMAIL PROTECTED]> wrote: > Maybe. But, what happens with:
> x = 1 > y = lambda: x > del x > z = y() > Does/should this also throw a NameError? Yep. It throws a NameError. So deleting from the lex pad is ok. leo
Benjamin Goldberg <[EMAIL PROTECTED]> wrote: > Maybe. But, what happens with:
> x = 1 > y = lambda: x > del x > z = y() > Does/should this also throw a NameError? Yep. It throws a NameError. So deleting from the lex pad is ok. leo