Searched refs:d21v (Results 1 - 3 of 3) sorted by relevance
/third_party/python/Lib/lib2to3/tests/data/ |
H A D | py3_test_grammar.py | 263 def d21v(a, b, c=1, *rest): pass function 264 d21v(1, 2) 265 d21v(1, 2, 3) 266 d21v(1, 2, 3, 4) 267 d21v(*(1, 2, 3, 4)) 268 d21v(1, 2, **{'c': 3})
|
H A D | py2_test_grammar.py | 251 def d21v(a, b, c=1, *rest): pass function 252 d21v(1, 2) 253 d21v(1, 2, 3) 254 d21v(1, 2, 3, 4) 255 d21v(*(1, 2, 3, 4)) 256 d21v(1, 2, **{'c': 3})
|
/third_party/python/Lib/test/ |
H A D | test_grammar.py | 621 def d21v(a, b, c=1, *rest): pass function 622 d21v(1, 2) 623 d21v(1, 2, 3) 624 d21v(1, 2, 3, 4) 625 d21v(*(1, 2, 3, 4)) 626 d21v(1, 2, **{'c': 3})
|
Completed in 10 milliseconds