Searched refs:pos2key2 (Results 1 – 3 of 3) sorted by relevance
/external/python/cpython2/Lib/lib2to3/tests/data/ |
D | py3_test_grammar.py | 279 def pos2key2(p1, p2, *, k1, k2=100): return p1,p2,k1,k2 function 280 pos2key2(1, 2, k1=100) 281 pos2key2(1, 2, k1=100, k2=200) 282 pos2key2(1, 2, k2=100, k1=200)
|
/external/python/cpython3/Lib/lib2to3/tests/data/ |
D | py3_test_grammar.py | 303 def pos2key2(p1, p2, *, k1, k2=100): return p1,p2,k1,k2 function 304 pos2key2(1, 2, k1=100) 305 pos2key2(1, 2, k1=100, k2=200) 306 pos2key2(1, 2, k2=100, k1=200)
|
/external/python/cpython3/Lib/test/ |
D | test_grammar.py | 632 def pos2key2(p1, p2, *, k1, k2=100): return p1,p2,k1,k2 function 633 pos2key2(1, 2, k1=100) 634 pos2key2(1, 2, k1=100, k2=200) 635 pos2key2(1, 2, k2=100, k1=200)
|