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

15 lines
325 B
Python

"""
categories: Core,Runtime
description: Local variables aren't included in locals() result
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.
workaround: Unknown
"""
def test():
val = 2
print(locals())
test()