1
0
forked from VimPlug/jedi

Fix some issues for args resolving in method calls

This commit is contained in:
Dave Halter
2019-07-30 01:28:51 +02:00
parent 21508a8c79
commit 268f828963
2 changed files with 21 additions and 4 deletions

View File

@@ -400,7 +400,7 @@ class BoundMethod(FunctionMixin, ContextWrapper):
return function_execution.infer()
def get_signatures(self):
return [sig.bind(self) for sig in self._wrapped_context.get_signatures()]
return [sig.bind(self) for sig in super(BoundMethod, self).get_signatures()]
def __repr__(self):
return '<%s: %s>' % (self.__class__.__name__, self._wrapped_context)