(self, val, ndigits)
| 197 | (2**31 - 1, -math.ceil(math.log10(2**31 - 1))) |
| 198 | ]) |
| 199 | def test_dunder_round_edgecases(self, val, ndigits): |
| 200 | assert_equal(round(val, ndigits), round(np.int32(val), ndigits)) |
| 201 | |
| 202 | def test_dunder_round_accuracy(self): |
| 203 | f = np.float64(5.1 * 10**73) |
nothing calls this directly
no test coverage detected