(self)
| 253 | |
| 254 | @unittest.skipIf(pypy, "pypy pydoc doesn't have this") |
| 255 | def test_issue583(self): |
| 256 | self.repl = FakeRepl() |
| 257 | self.repl.push("a = 1.2\n", False) |
| 258 | self.set_input_line("a.is_integer(") |
| 259 | self.repl.set_docstring() |
| 260 | self.assertIsNot(self.repl.docstring, None) |
| 261 | |
| 262 | def test_methods_of_expressions(self): |
| 263 | self.set_input_line("'a'.capitalize(") |
nothing calls this directly
no test coverage detected