diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2006-03-24 07:30:56 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2006-03-24 07:30:56 (GMT) |
commit | de868c9a1b384d822dd627349b96b428a93c9022 (patch) | |
tree | 8053664a8732cbcf6f9a4403e470cfd663b9bf45 /Lib/test/test_augassign.py | |
parent | 5a822fb7202e57803b8dc0e6cbed8a2b102993eb (diff) | |
download | cpython-de868c9a1b384d822dd627349b96b428a93c9022.zip cpython-de868c9a1b384d822dd627349b96b428a93c9022.tar.gz cpython-de868c9a1b384d822dd627349b96b428a93c9022.tar.bz2 |
Hmmm, I don't think we wanted to test // twice and / not at all (in this section).
Diffstat (limited to 'Lib/test/test_augassign.py')
-rw-r--r-- | Lib/test/test_augassign.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/test/test_augassign.py b/Lib/test/test_augassign.py index 8a8f00d..3b6c738 100644 --- a/Lib/test/test_augassign.py +++ b/Lib/test/test_augassign.py @@ -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 |