(self)
| 260 | self.assertIsNot(self.repl.docstring, None) |
| 261 | |
| 262 | def test_methods_of_expressions(self): |
| 263 | self.set_input_line("'a'.capitalize(") |
| 264 | self.assertTrue(self.repl.get_args()) |
| 265 | |
| 266 | self.set_input_line("(1 + 1.1).as_integer_ratio(") |
| 267 | self.assertTrue(self.repl.get_args()) |
| 268 | |
| 269 | |
| 270 | class TestArgspecInternal(unittest.TestCase): |
nothing calls this directly
no test coverage detected