summaryrefslogtreecommitdiff
path: root/tests/cpydiff/core_arguments.py
diff options
context:
space:
mode:
authorPaul Sokolovsky <pfalcon@users.sourceforge.net>2017-07-09 13:36:28 +0300
committerPaul Sokolovsky <pfalcon@users.sourceforge.net>2017-07-09 13:36:28 +0300
commitc5efb8159f7bd2aee3aa80412f5c1a3f52f0e812 (patch)
tree5b650e9a003e08f34874aa3b0529ac358d7c8ec8 /tests/cpydiff/core_arguments.py
parentb2979023ac049cdd1bb4d66761c3b0648387a1b3 (diff)
tests/cpydiff/core_arguments: Move under Functions subsection.
This is the last "orphan" case.
Diffstat (limited to 'tests/cpydiff/core_arguments.py')
-rw-r--r--tests/cpydiff/core_arguments.py10
1 files changed, 0 insertions, 10 deletions
diff --git a/tests/cpydiff/core_arguments.py b/tests/cpydiff/core_arguments.py
deleted file mode 100644
index 4734a8062..000000000
--- a/tests/cpydiff/core_arguments.py
+++ /dev/null
@@ -1,10 +0,0 @@
-"""
-categories: Core
-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)