fix build
authorStefan Behnel <stefan_ml@behnel.de>
Mon, 11 Mar 2013 18:15:11 +0000 (19:15 +0100)
committerStefan Behnel <stefan_ml@behnel.de>
Mon, 11 Mar 2013 18:15:11 +0000 (19:15 +0100)
--HG--
extra : rebase_source : 02f74a004499a227fc7edf2ccf3a1a9728c8951f

Cython/Compiler/Visitor.pxd

index 6eaf2cc..795eb9c 100644 (file)
@@ -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