mirror of https://github.com/python/cpython
Hmmm, I don't think we wanted to test // twice and / not at all (in this section).
This commit is contained in:
parent
5a822fb720
commit
de868c9a1b
|
@ -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
|
||||||
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
|
||||||
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
|
||||||
|
|
Loading…
Reference in New Issue