1
0
forked from VimPlug/jedi

Fix some small small issues around the latest commits

This commit is contained in:
Dave Halter
2018-11-18 23:53:56 +01:00
parent cf6cae728a
commit d2c0b13a02
2 changed files with 13 additions and 6 deletions

View File

@@ -16,7 +16,7 @@ class AbstractSignature(object):
def to_string(self):
raise NotImplementedError
def bind(self):
def bind(self, context):
raise NotImplementedError
def get_param_names(self):
@@ -46,5 +46,5 @@ class BuiltinSignature(AbstractSignature):
def _function_context(self):
return self.context
def bind(self):
raise NotImplementedError('pls implement, need test case')
def bind(self, context):
raise NotImplementedError('pls implement, need test case, %s' % context)