From 8b6de130c64ace2a5bd56ec619eb54216676b613 Mon Sep 17 00:00:00 2001 From: Brett Cannon Date: Fri, 25 Aug 2006 04:24:12 +0000 Subject: UNARY_CONVERT can no longer be generated, so remove a test for the peepholer optimization for it. --- Lib/test/test_peepholer.py | 1 - 1 file changed, 1 deletion(-) diff --git a/Lib/test/test_peepholer.py b/Lib/test/test_peepholer.py index 4385a84..be7d4e8 100644 --- a/Lib/test/test_peepholer.py +++ b/Lib/test/test_peepholer.py @@ -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 ): -- cgit v0.12