(self)
| 6192 | assert_array_equal(x[~nan_mask], y[~nan_mask]) |
| 6193 | |
| 6194 | def test_roundtrip_repr(self): |
| 6195 | x = self._create_data() |
| 6196 | x = x.real.ravel() |
| 6197 | s = "@".join(repr(x)[11:-1] for x in x) |
| 6198 | y = np.fromstring(s, sep="@") |
| 6199 | assert_array_equal(x, y) |
| 6200 | |
| 6201 | def test_unseekable_fromfile(self, tmp_path, param_filename): |
| 6202 | # gh-6246 |
nothing calls this directly
no test coverage detected