diff options
author | Amaury Forgeot d'Arc <amauryfa@gmail.com> | 2010-09-10 21:39:53 +0000 |
---|---|---|
committer | Amaury Forgeot d'Arc <amauryfa@gmail.com> | 2010-09-10 21:39:53 +0000 |
commit | f4136c2c8d5c2470640d04074c10b9e576c0e4fb (patch) | |
tree | 8bf27e5552741a2bf9b10349751b88b14bdc9986 /Python/sysmodule.c | |
parent | 624de501c80fe591a04202cc6474c1f81c4ec1e7 (diff) | |
download | cpython-f4136c2c8d5c2470640d04074c10b9e576c0e4fb.tar.gz |
#4617: Previously it was illegal to delete a name from the local
namespace if it occurs as a free variable in a nested block. This limitation
of the compiler has been lifted, and a new opcode introduced (DELETE_DEREF).
This sample was valid in 2.6, but fails to compile in 3.x without this change::
>>> def f():
... def print_error():
... print(e)
... try:
... something
... except Exception as e:
... print_error()
... # implicit "del e" here
This sample has always been invalid in Python, and now works::
>>> def outer(x):
... def inner():
... return x
... inner()
... del x
There is no need to bump the PYC magic number: the new opcode is used
for code that did not compile before.
Diffstat (limited to 'Python/sysmodule.c')
0 files changed, 0 insertions, 0 deletions