summaryrefslogtreecommitdiff
path: root/pylint/test/input/func_w0152.py
diff options
context:
space:
mode:
Diffstat (limited to 'pylint/test/input/func_w0152.py')
-rw-r--r--pylint/test/input/func_w0152.py18
1 files changed, 0 insertions, 18 deletions
diff --git a/pylint/test/input/func_w0152.py b/pylint/test/input/func_w0152.py
deleted file mode 100644
index 9fff4a6..0000000
--- a/pylint/test/input/func_w0152.py
+++ /dev/null
@@ -1,18 +0,0 @@
-"""check use of * or **
-"""
-# pylint: disable=no-absolute-import
-from operator import add
-__revision__ = reduce(*(add, (1, 2, 3)))
-
-
-def func(arg1, arg2):
- """magic function
- """
- return arg2, arg1
-
-MYDICT = {'arg1':2, 'arg2': 4}
-func(**MYDICT)
-
-def coolfunc(*args, **kwargs):
- """magic function"""
- return func(*args, **kwargs)