Note about best_match function.
authorRobert Bradshaw <robertwb@math.washington.edu>
Thu, 4 Feb 2010 22:24:17 +0000 (14:24 -0800)
committerRobert Bradshaw <robertwb@math.washington.edu>
Thu, 4 Feb 2010 22:24:17 +0000 (14:24 -0800)
Cython/Compiler/PyrexTypes.py

index 5b78c8f1df652527ad37cab24f142b5a3c99f4da..77bed247d8a3d817e63ee9e29a4b665b0913bcbf 100755 (executable)
@@ -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