Python: Access from within a lambda a name that's in the scope but not in the namespace

204 Views Asked by At

Consider the following code:

aDict = {}    
execfile('file.py',globals(),aDict)
aDict['func2']() # this calls func2 which in turn calls func1. But it fails

And file.py contains this:

def func1():
    return 1

myVar = func1() # checking that func1 exists in the scope

func2 = lambda: func1()

This gives an error saying "NameError: global name 'func1' is not defined."

I'm not sure what is happening here.
The code in file.py is executed with an empty local namespace.
Then, inside that code, a new function is defined, which is succesfully called right away. That means the function does exist in that scope.

So... why func1 cannot be called inside the lambda?

On other languages, lambdas/closures are bound to the scope in which they are defined.
How are the rules in Python? Are they bound to the scope? to the namespace?

1

There are 1 best solutions below

0
On

I think the namespace that func1 is defined in (the namespace of file.py) is gone, so it can't look it up again. Here is code where func1 is remembered, though it is ugly:

func2 = (lambda x: lambda : x())(func1)