Searched refs:do_single (Results 1 – 1 of 1) sorted by relevance
/external/python/cpython3/Modules/_decimal/tests/ |
D | deccheck.py | 1240 def do_single(method, f): function 1251 do_single(method, lambda: test_method(method, testspecs, test_unary)) 1254 do_single(method, lambda: test_method(method, testspecs, test_binary)) 1258 do_single(name, lambda: test_method(method, testspecs, test_ternary)) 1260 do_single('__format__', lambda: test_method('__format__', testspecs, test_format)) 1261 do_single('__round__', lambda: test_method('__round__', testspecs, test_round)) 1262 do_single('from_float', lambda: test_method('from_float', testspecs, test_from_float)) 1263 do_single('quantize_api', lambda: test_method('quantize', testspecs, test_quantize_api)) 1267 do_single(method, lambda: test_method(method, testspecs, test_unary)) 1270 do_single(method, lambda: test_method(method, testspecs, test_binary)) [all …]
|