Searched defs:d02 (Results 1 - 6 of 6) sorted by relevance

/external/python/cpython2/Lib/lib2to3/tests/data/
H A Dpy2_test_grammar.py224 def d02(a=1, b=2): pass function in function:GrammarTests.testFuncdef
225 d02()
226 d02(1)
227 d02(1, 2)
228 d02(*(1, 2))
229 d02(1, *(2,))
230 d02(1, **{'b':2})
231 d02(**{'a': 1, 'b': 2})
H A Dpy3_test_grammar.py212 def d02(a=1, b=2): pass function in function:GrammarTests.testFuncdef
213 d02()
214 d02(1)
215 d02(1, 2)
216 d02(*(1, 2))
217 d02(1, *(2,))
218 d02(1, **{'b':2})
219 d02(**{'a': 1, 'b': 2})
/external/python/cpython2/Lib/test/
H A Dtest_grammar.py227 def d02(a=1, b=2): pass function in function:GrammarTests.testFuncdef
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})
/external/python/cpython3/Lib/lib2to3/tests/data/
H A Dpy2_test_grammar.py224 def d02(a=1, b=2): pass function in function:GrammarTests.testFuncdef
225 d02()
226 d02(1)
227 d02(1, 2)
228 d02(*(1, 2))
229 d02(1, *(2,))
230 d02(1, **{'b':2})
231 d02(**{'a': 1, 'b': 2})
H A Dpy3_test_grammar.py212 def d02(a=1, b=2): pass function in function:GrammarTests.testFuncdef
213 d02()
214 d02(1)
215 d02(1, 2)
216 d02(*(1, 2))
217 d02(1, *(2,))
218 d02(1, **{'b':2})
219 d02(**{'a': 1, 'b': 2})
/external/python/cpython3/Lib/test/
H A Dtest_grammar.py487 def d02(a=1, b=2): pass function in function:GrammarTests.test_funcdef
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})

Completed in 157 milliseconds