1
0
forked from VimPlug/jedi

showing function params basically works - fine tuning needed

This commit is contained in:
David Halter
2012-09-15 04:14:47 +02:00
parent 9b7d82a251
commit 3ac2b89fcf
3 changed files with 13 additions and 6 deletions

View File

@@ -124,10 +124,8 @@ class CallDef(object):
else:
try:
sub = self.executable.get_subscope_by_name('__init__')
return sub.params
return sub.params[1:] # ignore self
except KeyError:
print self.executable.subscopes
print 'LALA'
return []
def __repr__(self):