Home | History | Annotate | Download | only in test

Lines Matching full:d02

227         def d02(a=1, b=2): pass
228 d02()
229 d02(1)
230 d02(1, 2)
231 d02(*(1, 2))
232 d02(1, *(2,))
233 d02(1, **{'b':2})
234 d02(**{'a': 1, 'b': 2})