(self)
| 194 | assert_equal(str(np.float32(1.2)), str(1.2)) |
| 195 | |
| 196 | def test_locale_double(self): |
| 197 | assert_equal(str(np.double(1.2)), str(1.2)) |
| 198 | |
| 199 | @pytest.mark.skipif(IS_MUSL, |
| 200 | reason="test flaky on musllinux") |
nothing calls this directly
no test coverage detected