summaryrefslogtreecommitdiff
path: root/test/input/func_w0152.py
blob: 5054d9072049c07da04378ca8bf68e2a1162a9ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
"""check use of * or **
"""

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)