From d1573870f616c750662e8d60ac55308cb134d7a2 Mon Sep 17 00:00:00 2001 From: Stefan Behnel Date: Mon, 11 Mar 2013 19:15:11 +0100 Subject: [PATCH] fix build --HG-- extra : rebase_source : 02f74a004499a227fc7edf2ccf3a1a9728c8951f --- Cython/Compiler/Visitor.pxd | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Cython/Compiler/Visitor.pxd b/Cython/Compiler/Visitor.pxd index 6eaf2cc..795eb9c 100644 --- a/Cython/Compiler/Visitor.pxd +++ b/Cython/Compiler/Visitor.pxd @@ -33,11 +33,13 @@ cdef class MethodDispatcherTransform(EnvTransform): @cython.final cdef _find_handler(self, match_name, bint has_kwargs) @cython.final + cdef _delegate_to_assigned_value(self, node, function, arg_list, kwargs) + @cython.final cdef _dispatch_to_handler(self, node, function, arg_list, kwargs) @cython.final cdef _dispatch_to_method_handler(self, attr_name, self_arg, is_unbound_method, type_name, - node, arg_list, kwargs) + node, function, arg_list, kwargs) cdef class RecursiveNodeReplacer(VisitorTransform): cdef public orig_node -- 2.7.4