()
| 86 | |
| 87 | @pytest.mark.skipif(string_to_longdouble_inaccurate, reason="Need strtold_l") |
| 88 | def test_fromstring(): |
| 89 | o = 1 + LD_INFO.eps |
| 90 | s = (" " + str(o)) * 5 |
| 91 | a = np.array([o] * 5) |
| 92 | assert_equal(np.fromstring(s, sep=" ", dtype=np.longdouble), a, |
| 93 | err_msg=f"reading '{s}'") |
| 94 | |
| 95 | |
| 96 | def test_fromstring_complex(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…