From 0dad0f763cfad1d387db91053f50f289732e0011 Mon Sep 17 00:00:00 2001 From: Tim Peters Date: Tue, 4 Sep 2001 19:48:01 +0000 Subject: [PATCH] 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). --- Lib/test/test_long.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Lib/test/test_long.py b/Lib/test/test_long.py index 01d567a4cc..104b086585 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 -- 2.40.0