diff options
| author | Brett Cannon <bcannon@gmail.com> | 2006-08-25 04:24:12 +0000 |
|---|---|---|
| committer | Brett Cannon <bcannon@gmail.com> | 2006-08-25 04:24:12 +0000 |
| commit | 8b6de130c64ace2a5bd56ec619eb54216676b613 (patch) | |
| tree | cdc71e08c64ccf36f34b3ab8997f472c8107551b | |
| parent | 8933cb477f8baac44ba0f214cf2738eef21b558d (diff) | |
| download | cpython-git-8b6de130c64ace2a5bd56ec619eb54216676b613.tar.gz | |
UNARY_CONVERT can no longer be generated, so remove a test for the peepholer
optimization for it.
| -rw-r--r-- | Lib/test/test_peepholer.py | 1 |
1 files changed, 0 insertions, 1 deletions
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 ): |
