(self)
| 199 | self.assertEqual(self.repl.current_func.__name__, expected_name) |
| 200 | |
| 201 | def test_syntax_error_parens(self): |
| 202 | for line in ["spam(]", "spam([)", "spam())"]: |
| 203 | self.set_input_line(line) |
| 204 | # Should not explode |
| 205 | self.repl.get_args() |
| 206 | |
| 207 | def test_kw_arg_position(self): |
| 208 | self.set_input_line("spam(a=0") |
nothing calls this directly
no test coverage detected