diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2017-05-02 03:36:17 +0300 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2017-05-02 03:36:47 +0300 |
commit | 58ecbc7752116be123598daec7c2be77d8681f8c (patch) | |
tree | 8f636c7200b3316592a803cd786f720e1f274391 | |
parent | 674da04e2e4aa54822652b8e3e24261d8d4cd95d (diff) | |
download | micropython-58ecbc7752116be123598daec7c2be77d8681f8c.tar.gz micropython-58ecbc7752116be123598daec7c2be77d8681f8c.zip |
tests/cpydiff/core_arguments: Fill in cause/workaround.
-rw-r--r-- | tests/cpydiff/core_arguments.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/cpydiff/core_arguments.py b/tests/cpydiff/core_arguments.py index a0831ab40c..4734a80627 100644 --- a/tests/cpydiff/core_arguments.py +++ b/tests/cpydiff/core_arguments.py @@ -1,8 +1,8 @@ """ categories: Core -description: Error messages may display incorrect argument counts -cause: Unknown -workaround: Unknown +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. """ try: [].append() |