(f)
| 29 | |
| 30 | |
| 31 | def eval_formatter_list_comprehension_check(f): |
| 32 | ns = dict(n=12) |
| 33 | s = f.format("{[n//i for i in range(1,8)]}", **ns) |
| 34 | assert s == "[12, 6, 4, 3, 2, 2, 1]" |
| 35 | |
| 36 | |
| 37 | def eval_formatter_check(f): |
no test coverage detected
searching dependent graphs…