From: Tim Peters Date: Tue, 4 Sep 2001 19:48:01 +0000 (+0000) Subject: Revert one of the "division fixes" in test_long. It intends to try both X-Git-Tag: v2.2a3~114 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0dad0f763cfad1d387db91053f50f289732e0011;p=thirdparty%2FPython%2Fcpython.git 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). --- diff --git a/Lib/test/test_long.py b/Lib/test/test_long.py index 01d567a4ccb0..104b08658587 100644 --- a/Lib/test/test_long.py +++ b/Lib/test/test_long.py @@ -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