view tests/test_parse_files/test_functiondef.py @ 62:d255a932553f

Fix a few warnings.
author Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
date Mon, 13 Jun 2016 00:42:58 +0100
parents c3cc16b933d2
children 5df52b40fe54
line wrap: on
line source

def func0():
    pass
def func1(a, b: str):
    pass
def func2(a, *, b: composite.type, c=2, d: int=3):
    pass
def func3(a, c=1, *args, b=2, **kwargs):
    pass