(self)
| 2403 | msg, lineno=2) |
| 2404 | |
| 2405 | def test_unexpected_indent(self): |
| 2406 | self._check_error("foo()\n bar()\n", "unexpected indent", |
| 2407 | subclass=IndentationError) |
| 2408 | |
| 2409 | def test_no_indent(self): |
| 2410 | self._check_error("if 1:\nfoo()", "expected an indented block", |
nothing calls this directly
no test coverage detected