See e.g. the following: ```python def outer(): x = 1 def middle(): def inner(): return x return inner() return middle() assert outer() == 1, f'got {outer()!r}' ``` The access of `x` raises `NameError` on monty, works fine on CPython.
See e.g. the following:
The access of
xraisesNameErroron monty, works fine on CPython.