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

This commit is contained in:
Neal Norwitz 2006-03-24 07:30:56 +00:00
parent 5a822fb720
commit de868c9a1b
1 changed files with 3 additions and 3 deletions

View File

@ -5,7 +5,7 @@ x += 1
x *= 2
x **= 2
x -= 8
x //= 2
x /= 2
x //= 1
x %= 12
x &= 2
@ -19,7 +19,7 @@ x[0] += 1
x[0] *= 2
x[0] **= 2
x[0] -= 8
x[0] //= 2
x[0] /= 2
x[0] //= 2
x[0] %= 12
x[0] &= 2
@ -33,7 +33,7 @@ x[0] += 1
x[0] *= 2
x[0] **= 2
x[0] -= 8
x[0] //= 2
x[0] /= 2
x[0] //= 1
x[0] %= 12
x[0] &= 2