(self)
| 197 | self.check_conversion("spam", "string") |
| 198 | |
| 199 | def test_scalar_int(self): |
| 200 | self.check_conversion(3, "long int") |
| 201 | |
| 202 | def test_scalar_float(self): |
| 203 | self.check_conversion(3.1415, "double") |
nothing calls this directly
no test coverage detected