Author: brett.cannon
Date: Fri Aug 25 06:24:12 2006
New Revision: 51597

Modified:
   python/branches/p3yk/Lib/test/test_peepholer.py
Log:
UNARY_CONVERT can no longer be generated, so remove a test for the peepholer
optimization for it.


Modified: python/branches/p3yk/Lib/test/test_peepholer.py
==============================================================================
--- python/branches/p3yk/Lib/test/test_peepholer.py     (original)
+++ python/branches/p3yk/Lib/test/test_peepholer.py     Fri Aug 25 06:24:12 2006
@@ -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
         ):
_______________________________________________
Python-3000-checkins mailing list
[email protected]
http://mail.python.org/mailman/listinfo/python-3000-checkins

Reply via email to