UNARY_CONVERT can no longer be generated, so remove a test for the peepholer

optimization for it.
This commit is contained in:
Brett Cannon 2006-08-25 04:24:12 +00:00
parent 8933cb477f
commit 8b6de130c6
1 changed files with 0 additions and 1 deletions

View File

@ -135,7 +135,6 @@ class TestTranforms(unittest.TestCase):
def test_folding_of_unaryops_on_constants(self):
for line, elem in (
('`1`', "('1')"), # unary convert
('-0.5', '(-0.5)'), # unary negative
('~-2', '(1)'), # unary invert
):