()
| 82 | |
| 83 | @pytest.mark.skipif(string_to_longdouble_inaccurate, reason="Need strtold_l") |
| 84 | def test_fromstring(): |
| 85 | o = 1 + LD_INFO.eps |
| 86 | s = (" " + repr(o))*5 |
| 87 | a = np.array([o]*5) |
| 88 | assert_equal(np.fromstring(s, sep=" ", dtype=np.longdouble), a, |
| 89 | err_msg="reading '%s'" % s) |
| 90 | |
| 91 | |
| 92 | def test_fromstring_complex(): |
nothing calls this directly
no test coverage detected