diff options
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/output/test_coercion | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Lib/test/output/test_coercion b/Lib/test/output/test_coercion index 0cb893b..8c5f6e0 100644 --- a/Lib/test/output/test_coercion +++ b/Lib/test/output/test_coercion @@ -52,7 +52,7 @@ test_coercion 2 - [1] ... exceptions.TypeError 2 -= [1] ... exceptions.TypeError 2 * [1] = [1, 1] -2 *= [1] ... exceptions.TypeError +2 *= [1] => [1, 1] 2 / [1] ... exceptions.TypeError 2 /= [1] ... exceptions.TypeError 2 ** [1] ... exceptions.TypeError @@ -64,7 +64,7 @@ test_coercion 2 - (2,) ... exceptions.TypeError 2 -= (2,) ... exceptions.TypeError 2 * (2,) = (2, 2) -2 *= (2,) ... exceptions.TypeError +2 *= (2,) => (2, 2) 2 / (2,) ... exceptions.TypeError 2 /= (2,) ... exceptions.TypeError 2 ** (2,) ... exceptions.TypeError @@ -268,7 +268,7 @@ test_coercion 2 - [1] ... exceptions.TypeError 2 -= [1] ... exceptions.TypeError 2 * [1] = [1, 1] -2 *= [1] ... exceptions.TypeError +2 *= [1] => [1, 1] 2 / [1] ... exceptions.TypeError 2 /= [1] ... exceptions.TypeError 2 ** [1] ... exceptions.TypeError @@ -280,7 +280,7 @@ test_coercion 2 - (2,) ... exceptions.TypeError 2 -= (2,) ... exceptions.TypeError 2 * (2,) = (2, 2) -2 *= (2,) ... exceptions.TypeError +2 *= (2,) => (2, 2) 2 / (2,) ... exceptions.TypeError 2 /= (2,) ... exceptions.TypeError 2 ** (2,) ... exceptions.TypeError |