(self)
| 218 | self.assertEqual(self.repl.arg_pos, "c") |
| 219 | |
| 220 | def test_lambda_position(self): |
| 221 | self.set_input_line("spam(lambda a, b: 1, ") |
| 222 | self.assertTrue(self.repl.get_args()) |
| 223 | self.assertTrue(self.repl.funcprops) |
| 224 | # Argument position |
| 225 | self.assertEqual(self.repl.arg_pos, 1) |
| 226 | |
| 227 | @unittest.skipIf(pypy, "range pydoc has no signature in pypy") |
| 228 | def test_issue127(self): |
nothing calls this directly
no test coverage detected