()
| 82 | |
| 83 | |
| 84 | def test_eval_formatter(): |
| 85 | f = text.EvalFormatter() |
| 86 | eval_formatter_check(f) |
| 87 | eval_formatter_no_slicing_check(f) |
| 88 | if sys.version_info < (3, 14): |
| 89 | eval_formatter_list_comprehension_check(f) |
| 90 | |
| 91 | |
| 92 | def test_full_eval_formatter(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…