]> granicus.if.org Git - python/commitdiff
Remove test for BINARY_DIVIDE.
authorRaymond Hettinger <python@rcn.com>
Fri, 7 Jan 2005 18:34:56 +0000 (18:34 +0000)
committerRaymond Hettinger <python@rcn.com>
Fri, 7 Jan 2005 18:34:56 +0000 (18:34 +0000)
Lib/test/test_peepholer.py

index a0031f215634906d86dd1d5076bfec3d57b6ad91..42224244ef205a36ade45cc427726dc135ef08d0 100644 (file)
@@ -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