From: Brett Cannon Date: Fri, 25 Aug 2006 04:24:12 +0000 (+0000) Subject: UNARY_CONVERT can no longer be generated, so remove a test for the peepholer X-Git-Tag: v3.0a1~1329 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8b6de130c64ace2a5bd56ec619eb54216676b613;p=python UNARY_CONVERT can no longer be generated, so remove a test for the peepholer optimization for it. --- diff --git a/Lib/test/test_peepholer.py b/Lib/test/test_peepholer.py index 4385a84c1f..be7d4e8fbe 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 ):