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?
|
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:
|
|||||||||||||
|
|
There is another way to implement nonlocal variables in Python 2, in case any of the answers here are undesirable for whatever reason:
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. |
|||||||||||
|
|
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.,
should work as expected (printing 3). However, overriding the value of x does not work, e.g.,
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):
|
|||||
|
|
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 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.
An alternative is some scopes hackery:
You might be able to figure out some trickery to get the name of the parameter to |
|||
|
|
|
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"
|
|||
|
|
|
you can pass on the value, if you don't intend to modify it. if you want to use nonlocal
|
|||||||||
|