Searched refs:randdec (Results 1 – 3 of 3) sorted by relevance
/external/python/cpython3/Modules/_decimal/tests/ |
D | randdec.py | 116 def randdec(maxprec, maxexp): function 284 yield randdec(prec, emax), func(prec, emax, emin) 285 yield func(prec, emax, emin), randdec(prec, emax) 297 yield (randdec(prec, emax), func(prec, emax, emin), 299 yield (func(prec, emax, emin), randdec(prec, emax), 302 randdec(prec, emax)) 304 yield (randdec(prec, emax), randdec(prec, emax), 306 yield (randdec(prec, emax), func(prec, emax, emin), 307 randdec(prec, emax)) 308 yield (func(prec, emax, emin), randdec(prec, emax), [all …]
|
D | README.txt | 9 randdec.py -> Generate test cases for deccheck.py.
|
D | deccheck.py | 36 from randdec import randfloat, all_unary, all_binary, all_ternary 37 from randdec import unary_optarg, binary_optarg, ternary_optarg
|