(self)
| 3097 | msg, lineno=2) |
| 3098 | |
| 3099 | def test_unexpected_indent(self): |
| 3100 | self._check_error("foo()\n bar()\n", "unexpected indent", |
| 3101 | subclass=IndentationError) |
| 3102 | |
| 3103 | def test_no_indent(self): |
| 3104 | self._check_error("if 1:\nfoo()", "expected an indented block", |
nothing calls this directly
no test coverage detected