2017-02-07 15:55:37 +11:00
|
|
|
"""
|
2017-07-09 13:36:28 +03:00
|
|
|
categories: Core,Functions
|
2017-05-02 03:36:17 +03:00
|
|
|
description: Error messages for methods may display unexpected argument counts
|
|
|
|
cause: MicroPython counts "self" as an argument.
|
|
|
|
workaround: Interpret error messages with the information above in mind.
|
2017-02-07 15:55:37 +11:00
|
|
|
"""
|
|
|
|
try:
|
|
|
|
[].append()
|
|
|
|
except Exception as e:
|
|
|
|
print(e)
|