third_party.pylibs.pylint.src/pylint/test/input/func_kwoa_py30.py
2015-02-14 18:13:20 +02:00

13 lines
204 B
Python

# 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)