tests/cpydiff/core_arguments: Move under Functions subsection.

This is the last "orphan" case.
This commit is contained in:
Paul Sokolovsky
2017-07-09 13:36:28 +03:00
parent b2979023ac
commit c5efb8159f

View File

@@ -0,0 +1,10 @@
"""
categories: Core,Functions
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()
except Exception as e:
print(e)