()
| 45 | |
| 46 | @pytest.mark.skipif(string_to_longdouble_inaccurate, reason="Need strtold_l") |
| 47 | def test_repr_roundtrip_bytes(): |
| 48 | o = 1 + LD_INFO.eps |
| 49 | assert_equal(np.longdouble(repr(o).encode("ascii")), o) |
| 50 | |
| 51 | |
| 52 | @pytest.mark.skipif(string_to_longdouble_inaccurate, reason="Need strtold_l") |
nothing calls this directly
no test coverage detected