(self)
| 127 | # TODO This can be xfail when the generator functions are got rid of. |
| 128 | @pytest.mark.skip(reason="cexp(nan + 0I) is wrong on most platforms") |
| 129 | def test_special_values2(self): |
| 130 | # XXX: most implementations get it wrong here (including glibc <= 2.10) |
| 131 | # cexp(nan + 0i) is nan + 0i |
| 132 | check = check_complex_value |
| 133 | f = np.exp |
| 134 | |
| 135 | check(f, np.nan, 0, np.nan, 0) |
| 136 | |
| 137 | class TestClog: |
| 138 | def test_simple(self): |