(self, val, ndigits)
| 253 | (2**31 - 1, -math.ceil(math.log10(2**31 - 1))) |
| 254 | ]) |
| 255 | def test_dunder_round_edgecases(self, val, ndigits): |
| 256 | assert_equal(round(val, ndigits), round(np.int32(val), ndigits)) |
| 257 | |
| 258 | def test_dunder_round_accuracy(self): |
| 259 | f = np.float64(5.1 * 10**73) |
nothing calls this directly
no test coverage detected