1
0
forked from VimPlug/jedi

Remove get_matching_functions, it was unused code

This commit is contained in:
Dave Halter
2019-05-19 16:06:22 +02:00
parent 4b2518ca9a
commit 7ec76bc0b5
2 changed files with 0 additions and 21 deletions

View File

@@ -399,13 +399,6 @@ class BoundMethod(FunctionMixin, ContextWrapper):
function_execution = self.get_function_execution(arguments)
return function_execution.infer()
def get_matching_functions(self, arguments):
for func in self._wrapped_context.get_matching_functions(arguments):
if func is self:
yield self
else:
yield BoundMethod(self.instance, func)
def get_signatures(self):
return [sig.bind(self) for sig in self._wrapped_context.get_signatures()]