commit | 8b6de130c64ace2a5bd56ec619eb54216676b613 | [log] [tgz] |
---|---|---|
author | Brett Cannon <bcannon@gmail.com> | Fri Aug 25 04:24:12 2006 +0000 |
committer | Brett Cannon <bcannon@gmail.com> | Fri Aug 25 04:24:12 2006 +0000 |
tree | cdc71e08c64ccf36f34b3ab8997f472c8107551b | |
parent | 8933cb477f8baac44ba0f214cf2738eef21b558d [diff] |
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 4385a84..be7d4e8 100644 --- a/Lib/test/test_peepholer.py +++ b/Lib/test/test_peepholer.py
@@ -135,7 +135,6 @@ 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 ):