(self)
| 241 | self.assertEqual(self.repl.current_func.__name__, "range") |
| 242 | |
| 243 | def test_nonexistent_name(self): |
| 244 | self.set_input_line("spamspamspam(") |
| 245 | self.assertFalse(self.repl.get_args()) |
| 246 | |
| 247 | def test_issue572(self): |
| 248 | self.set_input_line("SpammitySpam(") |
nothing calls this directly
no test coverage detected