1
0
forked from VimPlug/jedi

Fix signatures for builtin methods

This commit is contained in:
Dave Halter
2019-05-27 20:25:46 +02:00
parent fc4d1151c7
commit 8d24e35fa9
2 changed files with 5 additions and 8 deletions
+2 -1
View File
@@ -88,4 +88,5 @@ class BuiltinSignature(AbstractSignature):
return self.context
def bind(self, context):
raise NotImplementedError('pls implement, need test case, %s' % context)
assert not self.is_bound
return BuiltinSignature(context, self._return_string, is_bound=True)