From: Stefan Behnel Date: Sun, 5 Jul 2009 13:13:04 +0000 (+0200) Subject: revert typing in Visitor.pxd because of obscure type test problem X-Git-Tag: 0.12.alpha0~270 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=6328f1a238949ed1fbf4b8ae1ad351e5e9f3ff26;p=cython.git revert typing in Visitor.pxd because of obscure type test problem --- diff --git a/Cython/Compiler/Visitor.pxd b/Cython/Compiler/Visitor.pxd index bfe352c4..5a0edb39 100644 --- a/Cython/Compiler/Visitor.pxd +++ b/Cython/Compiler/Visitor.pxd @@ -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=*)