()
| 444 | |
| 445 | |
| 446 | def test_error_after_conversions(): |
| 447 | with pytest.raises(TypeError) as exc_info: |
| 448 | m.test_error_after_conversions("hello") |
| 449 | assert str(exc_info.value).startswith( |
| 450 | "Unable to convert function return value to a Python type!" |
| 451 | ) |
| 452 | |
| 453 | |
| 454 | def test_aligned(): |