params of methods are now better handled, this is the first version, which i think would be useful for usage

This commit is contained in:
David Halter
2012-04-07 18:51:10 +02:00
parent 1a7c09e002
commit 2681699dcf
6 changed files with 65 additions and 56 deletions
+2 -2
View File
@@ -9,6 +9,6 @@ functions.modules.module_find_path.insert(0, '.')
with open('test.py') as f:
code = f.read()
for i in range(1):
completions = functions.complete(code, 50, 20)
completions = functions.complete(code, 50, 200)
print '\n', [c.names for c in completions]
print '\n', [c.names[-1] for c in completions]