Searched refs:rec_test (Results 1 – 2 of 2) sorted by relevance
/external/python/cpython3/Lib/lib2to3/ |
D | btm_utils.py | 254 if any(rec_test(subpattern, lambda x: type(x) is str)): 255 if any(rec_test(subpattern, 258 elif any(rec_test(subpattern, 274 def rec_test(sequence, test_func): function 279 yield from rec_test(x, test_func)
|
/external/python/cpython2/Lib/lib2to3/ |
D | btm_utils.py | 255 if any(rec_test(subpattern, lambda x: type(x) is str)): 256 if any(rec_test(subpattern, 259 elif any(rec_test(subpattern, 275 def rec_test(sequence, test_func): function 280 for y in rec_test(x, test_func):
|