From 71805ed5f6561d478bcacf022dc3f8ac2373910d Mon Sep 17 00:00:00 2001 From: Robert Bradshaw Date: Thu, 4 Feb 2010 14:24:17 -0800 Subject: [PATCH] Note about best_match function. --- Cython/Compiler/PyrexTypes.py | 1 + 1 file changed, 1 insertion(+) diff --git a/Cython/Compiler/PyrexTypes.py b/Cython/Compiler/PyrexTypes.py index 5b78c8f1..77bed247 100755 --- a/Cython/Compiler/PyrexTypes.py +++ b/Cython/Compiler/PyrexTypes.py @@ -2233,6 +2233,7 @@ def best_match(args, functions, pos=None): Finds the best function to be called Error if no function fits the call or an ambiguity is find (two or more possible functions) """ + # TODO: args should be a list of types, not a list of Nodes. actual_nargs = len(args) possibilities = [] bad_types = 0 -- 2.26.2