1
0
forked from VimPlug/jedi

Rework some call signature issues

This commit is contained in:
Dave Halter
2018-11-11 17:01:12 +01:00
parent c29cde6784
commit 4fbede7445
7 changed files with 51 additions and 34 deletions

View File

@@ -356,6 +356,9 @@ class ContextSet(BaseContextSet):
context_set |= method()
return context_set
def get_signatures(self):
return [sig for c in self._set for sig in c.get_signatures()]
NO_CONTEXTS = ContextSet([])