Python变量命名/绑定混淆

时间:2013-03-11 15:33:45

标签: python variables binding python-2.7 scope

我对Python开发相对较新,在阅读语言文档时,我遇到了一行:

  

取消绑定封闭范围引用的名称是非法的;编译器将报告一个SyntaxError。

因此,在学习练习中,我试图在交互式shell中创建此错误,但我无法找到这样做的方法。我使用的是Python v2.7.3,因此使用非本地关键字,如

def outer():
  a=5
  def inner():
     nonlocal a
     print(a)
     del a

不是一个选项,如果不使用非本地,当Python在del a函数中看到inner时,它会将其解释为尚未绑定的局部变量,抛出UnboundLocalError异常。

显然这个规则有关于全局变量的例外,那么我怎样才能创建一种情况,即我“非法”解除被封闭范围引用的变量名称的绑定?

2 个答案:

答案 0 :(得分:10)

删除必须在外部范围内进行:

>>> def foo():
...     a = 5
...     def bar():
...         return a
...     del a
... 
SyntaxError: can not delete variable 'a' referenced in nested scope

Python 3中删除了编译时限制:

$ python3.3
Python 3.3.0 (default, Sep 29 2012, 08:16:08) 
[GCC 4.2.1 Compatible Apple Clang 3.1 (tags/Apple/clang-318.0.58)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> def foo():
...     a = 5
...     def bar():
...         return a
...     del a
...     return bar
... 
>>>

相反,当您尝试引用NameError时会引发a

>>> foo()()
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "<stdin>", line 4, in bar
NameError: free variable 'a' referenced before assignment in enclosing scope

我很想在这里提交文档错误。对于Python 2,文档具有误导性;它正在删除嵌套作用域中用于触发编译时错误的变量,并且在Python 3中根本不再引发错误。

答案 1 :(得分:5)

要触发该错误,您需要在外部作用域的上下文中取消绑定变量。

>>> def outer():
...  a=5
...  del a
...  def inner():  
...   print a
... 
SyntaxError: can not delete variable 'a' referenced in nested scope