2017-05-01 20:42:46 -04:00
|
|
|
"""
|
|
|
|
categories: Core,Functions
|
|
|
|
description: User-defined attributes for functions are not supported
|
|
|
|
cause: MicroPython is highly optimized for memory usage.
|
|
|
|
workaround: Use external dictionary, e.g. ``FUNC_X[f] = 0``.
|
|
|
|
"""
|
2021-03-15 09:57:36 -04:00
|
|
|
|
|
|
|
|
2017-05-01 20:42:46 -04:00
|
|
|
def f():
|
|
|
|
pass
|
|
|
|
|
2021-03-15 09:57:36 -04:00
|
|
|
|
2017-05-01 20:42:46 -04:00
|
|
|
f.x = 0
|
|
|
|
print(f.x)
|