showing function params working now on both sides, but not joined

This commit is contained in:
David Halter
2012-09-15 03:57:22 +02:00
parent 4a23a1d533
commit 9b7d82a251
6 changed files with 107 additions and 6 deletions

View File

@@ -24,7 +24,8 @@ def run_completion_test(correct, source, line_nr, index, line, path):
# lines start with 1 and column is just the last (makes no
# difference for testing)
try:
completions = functions.complete(source, line_nr, index, path)
completions, call_def = functions.complete(source, line_nr, index,
path)
#import cProfile as profile
#profile.run('functions.complete("""%s""", %i, %i, "%s")'
# % (source, line_nr, len(line), path))