I’ve got this piece of code:
#!/usr/bin/env python
def get_match():
cache=[]
def match(v):
if cache:
return cache
cache=[v]
return cache
return match
m = get_match()
m(1)
if I run it, it says:
UnboundLocalError: local variable 'cache' referenced before assignment
but if I do this:
#!/usr/bin/env python
def get():
y = 1
def m(v):
return y + v
return m
a=get()
a(1)
it runs.
Is there something with list? or my code organizing is wrong?
The problem is that the variable
cacheis not in the scope of the function match. This is not a problem if you only want to read it as in your second example, but if you’re assigning to it, python interprets it as a local variable. If you’re using python 3 you can use thenonlocalkeyword to solve this problem – for python 2 there’s no simple workaround, unfortunately.The problem is somewhat the same with global variables – you need to use
globalevery time you assign to a global variable, but not for reading it.A short explanation of the reasons behind that:
The python interpreter compiles all functions into a special object of type
function. During this compilation, it checks for all local variables the function creates (for garbage collection etc). These variable names are saved within the function object. As it is perfectly legal to “shadow” an outer scopes variable (create a variable with the same name), any variable that is assigned to and that is not explicitly declared asglobal(ornonlocalin python3) is assumed to be a local variable.When the function is executed, the interpreter has to look up every variable reference it encounters. If the variable was found to be local during compilation, it is searched in the functions f_locals dictionary. If it has not been assigned to yet, this raises the exception you encountered. If the variable is not assigned to in the functions scope and thus is not part of its locals, it is looked up in the surrounding scopes – if it is not found there, this raises a similar exception.