Home | History | Annotate | Download | only in test

Lines Matching full:d02

487         def d02(a=1, b=2): pass
488 d02()
489 d02(1)
490 d02(1, 2)
491 d02(*(1, 2))
492 d02(1, *(2,))
493 d02(1, **{'b':2})
494 d02(**{'a': 1, 'b': 2})