[Python-checkins] r56389 - in sandbox/trunk/2to3: tests/test_pytree.py

collin.winter python-checkins at python.org
Sun Jul 15 00:34:33 CEST 2007


Author: collin.winter
Date: Sun Jul 15 00:34:33 2007
New Revision: 56389

Modified:
   sandbox/trunk/2to3/   (props changed)
   sandbox/trunk/2to3/tests/test_pytree.py
Log:
Remove the stub for a test that's never going to get filled in.


Modified: sandbox/trunk/2to3/tests/test_pytree.py
==============================================================================
--- sandbox/trunk/2to3/tests/test_pytree.py	(original)
+++ sandbox/trunk/2to3/tests/test_pytree.py	Sun Jul 15 00:34:33 2007
@@ -158,10 +158,6 @@
         self.assertEqual(str(n1), "foo**bar")
         self.failUnless(isinstance(n1.children, list))
 
-    def testConvert(self):
-        # XXX
-        pass
-
     def testPostOrder(self):
         l1 = pytree.Leaf(100, "foo")
         l2 = pytree.Leaf(100, "bar")


More information about the Python-checkins mailing list