revert typing in Visitor.pxd because of obscure type test problem
authorStefan Behnel <scoder@users.berlios.de>
Sun, 5 Jul 2009 13:13:04 +0000 (15:13 +0200)
committerStefan Behnel <scoder@users.berlios.de>
Sun, 5 Jul 2009 13:13:04 +0000 (15:13 +0200)
Cython/Compiler/Visitor.pxd

index bfe352c45468f993526b2148ef77bb2ff5188f3b..5a0edb39cd246d2343b6ba6058823a22cbf7db0e 100644 (file)
@@ -5,7 +5,7 @@ cdef class BasicVisitor:
 cdef class TreeVisitor(BasicVisitor):
     cdef public list access_path
     cpdef visitchild(self, child, parent, attrname, idx)
-    cpdef visitchildren(self, parent, attrs=*)
+#    cpdef visitchildren(self, parent, attrs=*)
 
 cdef class VisitorTransform(TreeVisitor):
     cpdef visitchildren(self, parent, attrs=*)