Paul Sokolovsky
8 years ago
2 changed files with 11 additions and 11 deletions
@ -1,11 +0,0 @@ |
|||
""" |
|||
categories: Core,Functions |
|||
description: Assign instance variable to function |
|||
cause: Unknown |
|||
workaround: Unknown |
|||
""" |
|||
def f(): |
|||
pass |
|||
|
|||
f.x = 0 |
|||
print(f.x) |
@ -0,0 +1,11 @@ |
|||
""" |
|||
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``. |
|||
""" |
|||
def f(): |
|||
pass |
|||
|
|||
f.x = 0 |
|||
print(f.x) |
Loading…
Reference in new issue