]> granicus.if.org Git - python/commitdiff
Hmmm, I don't think we wanted to test // twice and / not at all (in this section).
authorNeal Norwitz <nnorwitz@gmail.com>
Fri, 24 Mar 2006 07:30:56 +0000 (07:30 +0000)
committerNeal Norwitz <nnorwitz@gmail.com>
Fri, 24 Mar 2006 07:30:56 +0000 (07:30 +0000)
Lib/test/test_augassign.py

index 8a8f00d88d6c0883c73c33ab0175bcb1b97f5ec9..3b6c738b34a8ac93eafb95881acaa45ae9f50489 100644 (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