Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to implement a closure in Python 2.6 and I need to access a nonlocal variable but it seems like this keyword is not available in python 2.x. How should one access nonlocal variables in closures in these versions of python?

share|improve this question

6 Answers

Python can read nonlocal variables in 2.x, just not change them. This is annoying, but you can work around it. Just declare a dictionary, and store your variables as elements therein.

To use the example from Wikipedia:

def outer():
    d = {'y' : 0}
    def inner():
        d['y'] += 1
        return d['y']
    return inner

f = outer()
print(f(), f(), f()) #prints 1 2 3
share|improve this answer
1  
why is it possible to modify the value from dictionary? – coelhudo Apr 13 '12 at 2:29
2  
@coelhudo Because you can modify nonlocal variables. But you cannot do assignment to nonlocal variables. E.g., this will raise UnboundLocalError: def inner(): print d; d = {'y': 1}. Here, print d reads outer d thus creating nonlocal variable d in inner scope. – suzanshakya May 1 '12 at 17:52
1  
Thanks for this answer. I think you could improve the terminology though: instead of "can read, cannot change", maybe "can reference, cannot assign to". You can change the contents of an object in a nonlocal scope, but you can't change which object is referred to. – metamatt Feb 4 at 6:46

There is another way to implement nonlocal variables in Python 2, in case any of the answers here are undesirable for whatever reason:

def outer():
    outer.y = 0
    def inner():
        outer.y += 1
        return outer.y
    return inner

f = outer()
print(f(), f(), f()) #prints 1 2 3

It is redundant to use the name of the function in the assignment statement of the variable, but it looks simpler and cleaner to me than putting the variable in a dictionary. The value is remembered from one call to another, just like in Chris B.'s answer.

share|improve this answer
The most clear. – Jimmy Kane Jan 17 at 17:52
2  
Please beware: when implemented this way, if you do f = outer() and then later do g = outer(), then f's counter will be reset. This is because they both share a single outer.y variable, rather than each having their own independent one. Although this code looks more aesthetically pleasing than Chris B's answer, his way seems to be the only way to emulate lexical scoping if you want to call outer more than once. – Nathaniel Mar 14 at 3:57
@Nathaniel: Let me see if I understand this correctly. The assignment to outer.y does not involve anything local to the function call (instance) outer(), but assigns to an attribute of the function object that is bound to the name outer in its enclosing scope. And therefore one could equally well have used, in writing outer.y, any other name instead of outer, provided it is known to be bound in that scope. Is this correct? – Marc van Leeuwen Apr 16 at 8:13
Correction, I should have said, after "bound in that scope": to an object whose type allows setting attributes (like a function, or any class instance). Also, since this scope is actually further out than the one we want, wouldn't this suggest the following extremely ugly solution: instead of outer.y use the name inner.y (since inner is bound inside the call outer(), which is exactly the scope we want), but putting the initialisation inner.y = 0 after the definition of inner (as the object must exist when its attribute is created), but of course before return inner? – Marc van Leeuwen Apr 16 at 8:37

I think the key here is what you mean by "access". There should be no issue with reading a variable outside of the closure scope, e.g.,

x = 3
def outer():
    def inner():
        print x
    inner()
outer()

should work as expected (printing 3). However, overriding the value of x does not work, e.g.,

x = 3
def outer():
    def inner():
        x = 5
    inner()
outer()
print x

will still print 3. From my understanding of PEP-3104 this is what the nonlocal keyword is meant to cover. As mentioned in the PEP, you can use a class to accomplish the same thing (kind of messy):

class Namespace(object): pass
ns = Namespace()
ns.x = 3
def outer():
    def inner():
        ns.x = 5
    inner()
outer()
print ns.x
share|improve this answer
Instead of creating a class and instantiating it, one can simply create a function: def ns(): pass followed by ns.x = 3. It ain't pretty, but it's slightly less ugly to my eye. – davidchambers Jan 25 '11 at 11:36
Any particular reason for the downvote? I admit mine is not the most elegant solution, but it works... – ig0774 Mar 13 at 12:25

There is a wart in python's scoping rules - assignment makes a variable local to its immediately enclosing function scope. For a global variable, you would solve this with the global keyword.

The solution is to introduce an object which is shared between the two scopes, which contains mutable variables, but is itself referenced through a variable which is not assigned.

def outer(v):
    def inner(container = [v]):
        container[0] += 1
        return container[0]
    return inner

An alternative is some scopes hackery:

def outer(v):
    def inner(varname = 'v', scope = locals()):
        scope[varname] += 1
        return scope[varname]
    return inner

You might be able to figure out some trickery to get the name of the parameter to outer, and then pass it as varname, but without relying on the name outer you would like need to use a Y combinator.

share|improve this answer

The following solution is inspired by the answer by mikez302, but contrary to that answer does handle multiple calls of the outer function correctly. The "variable" inner.y is local to the current call of outer. Only it isn't a variable, since that is forbidden, but an object attribute (the object being the function inner itself). This is very ugly (note that the attribute can only be created after the inner function is defined) but seems effective.

def outer():
    def inner():
        inner.y += 1
        return inner.y
    inner.y = 0
    return inner

f = outer()
g = outer()
print(f(), f(), g(), f(), g()) #prints (1, 2, 1, 3, 2)
share|improve this answer

you can pass on the value, if you don't intend to modify it.

if you want to use nonlocal x, use:

def inner(a, b, .., x=x):
    # ...
share|improve this answer
1  
You won't be changing the value of x in the outer scope. When you use nonlocal in python 3 you can change the value of x. Read the final example in this section of the faq: docs.python.org/py3k/faq/… – PreludeAndFugue Jul 6 '10 at 22:54
@PreludeAndFugue you're right. my "fake" solution only provides read-only access of the non-local variable. however, it might be sufficient fo some uses. edited the answer – mykhal Jul 6 '10 at 22:59
Read-only access to variables in the outer scope is already provided without your solution. This has been the case for the last 10 years (well, 9 when you wrote your answer), since nested scopes were introduced in version 2.1. See PEP 227: python.org/dev/peps/pep-0227 – Henrik Mar 3 '12 at 22:51

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.