()
| 139 | |
| 140 | |
| 141 | def test_neg_128(): |
| 142 | with exc_iter(INT128_VALUES) as it: |
| 143 | for a, in it: |
| 144 | b = -a |
| 145 | c = mt.extint_neg_128(a) |
| 146 | if b != c: |
| 147 | assert_equal(c, b) |
| 148 | |
| 149 | |
| 150 | def test_shl_128(): |
nothing calls this directly
no test coverage detected