Local variable in a closure

Dave Angel davea at davea.name
Sun Aug 18 06:44:06 EDT 2013


w.w.milner at googlemail.com wrote:

> Is f local or not?
> http://pastebin.com/AKDJrbDs

Please have a little respect, and include the source in your message. 
You managed quite nicely to keep it small, but you put it in an obscure
place that some people won't be able to reach, and that might not
survive for the archives.

def multiplier(f):
    def times(n):
        # is f local?
        nonlocal f
        f=f+1
        # if not, why is it here?
        print("Locals: ",locals())
        return n*f   
    return times

times2 = multiplier(2)
print(times2(4)) # 3X4=12
print(times2(4)) # 4X4=16

Inside function times, the variable 'f' is a free variable, not a local.
 You can prove that to yourself by adding a dis.dis(times) just before
the "return times" statement.  Here's how it begins:

  7           0 LOAD_DEREF               0 (f) 
              3 LOAD_CONST               1 (1) 
              6 BINARY_ADD           
              7 STORE_DEREF              0 (f) 


In the dis.dis listing, the LOAD_DEREF and STORE_DEREF opcodes are
referring to free variables, the LOAD_FAST is referring to a local, and
the LOAD_GLOBAL is referring to a global.

The locals() function is just over-simplifying.  it's only a convenience
function, not what I would consider part of the language, and it wasn't
apparently deemed necessary to have a separate function for debugging
free varaibles.

-- 
DaveA





More information about the Python-list mailing list