Kaydet (Commit) 0dad0f76 authored tarafından Tim Peters's avatar Tim Peters

Revert one of the "division fixes" in test_long. It intends to try both

"/" and "//", and doesn't really care what they *mean*, just that both
are tried (and that, whatever they mean, they act similarly for int and
long arguments).
üst 1ef106c9
......@@ -296,8 +296,8 @@ def test_auto_overflow():
checkit(x, '*', y)
if y:
expected = longx // longy
got = x // y
expected = longx / longy
got = x / y
checkit(x, '/', y)
expected = longx // longy
......
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