You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
325 B
14 lines
325 B
"""
|
|
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()
|
|
|