circuitpython/tests/cpydiff/core_locals_eval.py
Scott Shawcroft b057fb8a4b
codeformat
2021-04-19 22:22:44 -07:00

17 lines
469 B
Python

"""
categories: Core,Runtime
description: Code running in eval() function doesn't have access to local variables
cause: MicroPython doesn't maintain symbolic local environment, it is optimized to an array of slots. Thus, local variables can't be accessed by a name. Effectively, ``eval(expr)`` in MicroPython is equivalent to ``eval(expr, globals(), globals())``.
workaround: Unknown
"""
val = 1
def test():
val = 2
print(val)
eval("print(val)")
test()