Commit de868c9a authored by Neal Norwitz's avatar Neal Norwitz

Hmmm, I don't think we wanted to test // twice and / not at all (in this section).

parent 5a822fb7
...@@ -5,7 +5,7 @@ x += 1 ...@@ -5,7 +5,7 @@ x += 1
x *= 2 x *= 2
x **= 2 x **= 2
x -= 8 x -= 8
x //= 2 x /= 2
x //= 1 x //= 1
x %= 12 x %= 12
x &= 2 x &= 2
...@@ -19,7 +19,7 @@ x[0] += 1 ...@@ -19,7 +19,7 @@ x[0] += 1
x[0] *= 2 x[0] *= 2
x[0] **= 2 x[0] **= 2
x[0] -= 8 x[0] -= 8
x[0] //= 2 x[0] /= 2
x[0] //= 2 x[0] //= 2
x[0] %= 12 x[0] %= 12
x[0] &= 2 x[0] &= 2
...@@ -33,7 +33,7 @@ x[0] += 1 ...@@ -33,7 +33,7 @@ x[0] += 1
x[0] *= 2 x[0] *= 2
x[0] **= 2 x[0] **= 2
x[0] -= 8 x[0] -= 8
x[0] //= 2 x[0] /= 2
x[0] //= 1 x[0] //= 1
x[0] %= 12 x[0] %= 12
x[0] &= 2 x[0] &= 2
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment