From: Raymond Hettinger Date: Fri, 7 Jan 2005 18:34:56 +0000 (+0000) Subject: Remove test for BINARY_DIVIDE. X-Git-Tag: v2.5a0~2163 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=922b3e2098d9903d915aa7ce19d8e3c8973643d0;p=python Remove test for BINARY_DIVIDE. --- diff --git a/Lib/test/test_peepholer.py b/Lib/test/test_peepholer.py index a0031f2156..42224244ef 100644 --- a/Lib/test/test_peepholer.py +++ b/Lib/test/test_peepholer.py @@ -109,7 +109,6 @@ class TestTranforms(unittest.TestCase): ('a="abc" + "def"', "('abcdef')"), # check string ops ('a = 3**4', '(81)'), # binary power ('a = 3*4', '(12)'), # binary multiply - ('a = 13/4.0', '(3.25)'), # binary divide ('a = 13//4', '(3)'), # binary floor divide ('a = 14%4', '(2)'), # binary modulo ('a = 2+3', '(5)'), # binary add