From: Neal Norwitz Date: Fri, 24 Mar 2006 07:30:56 +0000 (+0000) Subject: Hmmm, I don't think we wanted to test // twice and / not at all (in this section). X-Git-Tag: v2.5a0~117 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=de868c9a1b384d822dd627349b96b428a93c9022;p=python Hmmm, I don't think we wanted to test // twice and / not at all (in this section). --- diff --git a/Lib/test/test_augassign.py b/Lib/test/test_augassign.py index 8a8f00d88d..3b6c738b34 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