summaryrefslogtreecommitdiff
path: root/pylint/test/functional/unexpected_special_method_signature.txt
diff options
context:
space:
mode:
Diffstat (limited to 'pylint/test/functional/unexpected_special_method_signature.txt')
-rw-r--r--pylint/test/functional/unexpected_special_method_signature.txt7
1 files changed, 6 insertions, 1 deletions
diff --git a/pylint/test/functional/unexpected_special_method_signature.txt b/pylint/test/functional/unexpected_special_method_signature.txt
index 521a02c..4fb52df 100644
--- a/pylint/test/functional/unexpected_special_method_signature.txt
+++ b/pylint/test/functional/unexpected_special_method_signature.txt
@@ -8,4 +8,9 @@ no-method-argument:26:Invalid.__iter__:Method has no argument
unexpected-special-method-signature:30:Invalid.__getattr__:The special method '__getattr__' expects 1 param(s), 2 were given
unexpected-special-method-signature:37:FirstBadContextManager.__exit__:The special method '__exit__' expects 3 param(s), 1 was given
unexpected-special-method-signature:43:SecondBadContextManager.__exit__:The special method '__exit__' expects 3 param(s), 4 were given
-unexpected-special-method-signature:51:ThirdBadContextManager.__exit__:The special method '__exit__' expects 3 param(s), 4 were given \ No newline at end of file
+unexpected-special-method-signature:51:ThirdBadContextManager.__exit__:The special method '__exit__' expects 3 param(s), 4 were given
+unexpected-special-method-signature:57:Async.__aiter__:The special method '__aiter__' expects 0 param(s), 1 was given
+unexpected-special-method-signature:59:Async.__anext__:The special method '__anext__' expects 0 param(s), 2 were given
+unexpected-special-method-signature:61:Async.__await__:The special method '__await__' expects 0 param(s), 1 was given
+unexpected-special-method-signature:63:Async.__aenter__:The special method '__aenter__' expects 0 param(s), 1 was given
+unexpected-special-method-signature:65:Async.__aexit__:The special method '__aexit__' expects 3 param(s), 0 was given \ No newline at end of file