(self)
| 234 | @pytest.mark.skipif(string_to_longdouble_inaccurate, |
| 235 | reason="Need strtold_l") |
| 236 | def test_genfromtxt(self): |
| 237 | with temppath() as path: |
| 238 | with open(path, 'w') as f: |
| 239 | f.write(self.out) |
| 240 | res = np.genfromtxt(path, dtype=np.longdouble) |
| 241 | assert_equal(res, self.tgt) |
| 242 | |
| 243 | @pytest.mark.skipif(string_to_longdouble_inaccurate, |
| 244 | reason="Need strtold_l") |
nothing calls this directly
no test coverage detected