summaryrefslogtreecommitdiff
path: root/pylint/test/functional/arguments_differ_py3.py
diff options
context:
space:
mode:
Diffstat (limited to 'pylint/test/functional/arguments_differ_py3.py')
-rw-r--r--pylint/test/functional/arguments_differ_py3.py36
1 files changed, 0 insertions, 36 deletions
diff --git a/pylint/test/functional/arguments_differ_py3.py b/pylint/test/functional/arguments_differ_py3.py
deleted file mode 100644
index 0e07131cc..000000000
--- a/pylint/test/functional/arguments_differ_py3.py
+++ /dev/null
@@ -1,36 +0,0 @@
-# pylint: disable=missing-docstring,too-few-public-methods
-class AbstractFoo:
-
- def kwonly_1(self, first, *, second, third):
- "Normal positional with two positional only params."
-
- def kwonly_2(self, *, first, second):
- "Two positional only parameter."
-
- def kwonly_3(self, *, first, second):
- "Two positional only params."
-
- def kwonly_4(self, *, first, second=None):
- "One positional only and another with a default."
-
- def kwonly_5(self, *, first, **kwargs):
- "Keyword only and keyword variadics."
-
-
-class Foo(AbstractFoo):
-
- def kwonly_1(self, first, *, second): # [arguments-differ]
- "One positional and only one positional only param."
-
- def kwonly_2(self, first): # [arguments-differ]
- "Only one positional parameter instead of two positional only parameters."
-
- def kwonly_3(self, first, second): # [arguments-differ]
- "Two positional params."
-
- def kwonly_4(self, first, second): # [arguments-differ]
- "Two positional params."
-
- def kwonly_5(self, *, first): # [arguments-differ]
- "Keyword only, but no variadics."
- \ No newline at end of file