(method, f)
| 1238 | |
| 1239 | FOUND_METHOD = False |
| 1240 | def do_single(method, f): |
| 1241 | global FOUND_METHOD |
| 1242 | if args.multicore: |
| 1243 | q.put(method) |
| 1244 | elif not args.single or args.single == method: |
| 1245 | FOUND_METHOD = True |
| 1246 | f() |
| 1247 | |
| 1248 | # Decimal methods: |
| 1249 | for method in Functions['unary'] + Functions['unary_ctx'] + \ |
no test coverage detected
searching dependent graphs…