summaryrefslogtreecommitdiff
path: root/pylint/test/input/func_kwoa_py30.py
blob: 4be5302b3610c2f87b91bee6320e5e71cdfd1618 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# pylint: disable=C0121, C0102
'''A little testscript for PEP 3102 and pylint'''
def function(*, foo):
    '''A function for testing'''
    print(foo)

function(foo=1)

foo = 1
function(foo)

function(1)