Commit 9808d6f0 authored by Raymond Hettinger's avatar Raymond Hettinger

Remove test for BINARY_DIVIDE.

parent 0b94bc57
...@@ -109,7 +109,6 @@ class TestTranforms(unittest.TestCase): ...@@ -109,7 +109,6 @@ class TestTranforms(unittest.TestCase):
('a="abc" + "def"', "('abcdef')"), # check string ops ('a="abc" + "def"', "('abcdef')"), # check string ops
('a = 3**4', '(81)'), # binary power ('a = 3**4', '(81)'), # binary power
('a = 3*4', '(12)'), # binary multiply ('a = 3*4', '(12)'), # binary multiply
('a = 13/4.0', '(3.25)'), # binary divide
('a = 13//4', '(3)'), # binary floor divide ('a = 13//4', '(3)'), # binary floor divide
('a = 14%4', '(2)'), # binary modulo ('a = 14%4', '(2)'), # binary modulo
('a = 2+3', '(5)'), # binary add ('a = 2+3', '(5)'), # binary add
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment