Commit e93e4772 authored by Tim Peters's avatar Tim Peters

Fiddle test_augassign so it passes under -Qnew.

parent f582b82f
...@@ -217,9 +217,16 @@ x * 1 ...@@ -217,9 +217,16 @@ x * 1
1 * x 1 * x
x *= 1 x *= 1
x / 1 if 1/2 == 0:
1 / x x / 1
x /= 1 1 / x
x /= 1
else:
# True division is in effect, so "/" doesn't map to __div__ etc;
# but the canned expected-output file requires that those get called.
x.__div__(1)
x.__rdiv__(1)
x.__idiv__(1)
x // 1 x // 1
1 // x 1 // x
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment