tengo código como este:Python función anidada alcances
def write_postcodes(self):
"""Write postcodes database. Write data to file pointer. Data
is ordered. Initially index pages are written, grouping postcodes by
the first three characters, allowing for faster searching."""
status("POSTCODE", "Preparing to sort...", 0, 1)
# This function returns the key of x whilst updating the displayed
# status of the sort.
ctr = 0
def keyfunc(x):
ctr += 1
status("POSTCODE", "Sorting postcodes", ctr, len(self.postcodes))
return x
sort_res = self.postcodes[:]
sort_res.sort(key=keyfunc)
Pero ctr responde con un NameError:
Traceback (most recent call last):
File "PostcodeWriter.py", line 53, in <module>
w.write_postcodes()
File "PostcodeWriter.py", line 47, in write_postcodes
sort_res.sort(key=keyfunc)
File "PostcodeWriter.py", line 43, in keyfunc
ctr += 1
UnboundLocalError: local variable 'ctr' referenced before assignment
¿Cómo puedo solucionar este problema? Pensé que los telescopios nester me habrían permitido hacer esto. Lo he intentado con 'global', pero todavía no funciona.
también miran a esta pregunta: http://stackoverflow.com/questions/2516652/scoping-problem-in-recursive-closure –