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).
This commit is contained in:
Tim Peters 2001-09-04 19:48:01 +00:00
parent 1ef106c94d
commit 0dad0f763c
1 changed files with 2 additions and 2 deletions

View File

@ -296,8 +296,8 @@ def test_auto_overflow():
checkit(x, '*', y) checkit(x, '*', y)
if y: if y:
expected = longx // longy expected = longx / longy
got = x // y got = x / y
checkit(x, '/', y) checkit(x, '/', y)
expected = longx // longy expected = longx // longy