我有这样的代码:
def example():
# other logic omitted
stored_blocks = {}
def replace_blocks(m):
block = m.group(0)
block_hash = sha1(block)
stored_blocks[block_hash] = block
return '{{{%s}}}' % block_hash
num_converted = 0
def convert_variables(m):
name = m.group(1)
num_converted += 1
return '<%%= %s %%>' % name
fixed = MATCH_DECLARE_NEW.sub('', template)
fixed = MATCH_PYTHON_BLOCK.sub(replace_blocks, fixed)
fixed = MATCH_FORMAT.sub(convert_variables, fixed)
# more logic...
向 stored_blocks
添加元素可以很好地工作,但是我不能在第二个嵌套函数中增加 num_converted
。我得到一个异常,说 UnboundLocalError: local variable 'num_converted' referenced before assignment
。
我知道在3.x 中可以尝试 nonlocal num_converted
,但是如何在2.x 中解决这个问题呢?我不想使用全局变量。