()
| 160 | |
| 161 | |
| 162 | def test_shr_128(): |
| 163 | with exc_iter(INT128_VALUES) as it: |
| 164 | for a, in it: |
| 165 | if a < 0: |
| 166 | b = -((-a) >> 1) |
| 167 | else: |
| 168 | b = a >> 1 |
| 169 | c = mt.extint_shr_128(a) |
| 170 | if b != c: |
| 171 | assert_equal(c, b) |
| 172 | |
| 173 | |
| 174 | def test_gt_128(): |
nothing calls this directly
no test coverage detected