Bug report
Bug description:
def f(x):
def g():
print([x for x in range(10)])
def h():
print(x)
return h
print(x)
return g
f(1)()()
The above had always bound x in h to the parameter of f. But it no longer works and somehow binds to a local in g, throwing the following error:
NameError: cannot access free variable 'x' where it is not associated with a value in enclosing scope
CPython versions tested on:
3.12
Operating systems tested on:
Linux, Windows
Linked PRs
Bug report
Bug description:
The above had always bound
xinhto the parameter off. But it no longer works and somehow binds to a local ing, throwing the following error:CPython versions tested on:
3.12
Operating systems tested on:
Linux, Windows
Linked PRs