From 71b6938a665b803426a284218127f57801561007 Mon Sep 17 00:00:00 2001 From: Stefan Behnel Date: Thu, 11 Nov 2010 20:40:32 +0100 Subject: [PATCH] declare purely internal method of Visitor class as 'cdef' --- Cython/Compiler/Visitor.pxd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cython/Compiler/Visitor.pxd b/Cython/Compiler/Visitor.pxd index 160d2595..46ab02fb 100644 --- a/Cython/Compiler/Visitor.pxd +++ b/Cython/Compiler/Visitor.pxd @@ -9,7 +9,7 @@ cdef class TreeVisitor(BasicVisitor): cdef public list access_path cpdef visitchild(self, child, parent, attrname, idx) @cython.locals(idx=int) - cpdef dict _visitchildren(self, parent, attrs) + cdef dict _visitchildren(self, parent, attrs) # cpdef visitchildren(self, parent, attrs=*) cdef class VisitorTransform(TreeVisitor): -- 2.26.2