()
| 95 | |
| 96 | |
| 97 | def test_to_64(): |
| 98 | with exc_iter(INT128_VALUES) as it: |
| 99 | for a, in it: |
| 100 | if not (INT64_MIN <= a <= INT64_MAX): |
| 101 | assert_raises(OverflowError, mt.extint_to_64, a) |
| 102 | else: |
| 103 | b = mt.extint_to_64(a) |
| 104 | if a != b: |
| 105 | assert_equal(b, a) |
| 106 | |
| 107 | |
| 108 | def test_mul_64_64(): |
nothing calls this directly
no test coverage detected