MCPcopy
hub / github.com/davidhalter/jedi-vim / call

Method call

pythonx/jedi_vim.py:154–162  ·  view source on GitHub ↗
(cls, func, *args)

Source from the content-addressed store, hash-verified

152
153 @classmethod
154 def call(cls, func, *args):
155 try:
156 f = cls._func_cache[func]
157 except KeyError:
158 if IS_NVIM:
159 f = cls._func_cache[func] = getattr(vim.funcs, func)
160 else:
161 f = cls._func_cache[func] = vim.Function(func)
162 return f(*args)
163
164 @classmethod
165 def setqflist(cls, items, title, context):

Callers 4

hasMethod · 0.80
setqflistMethod · 0.80
setqflist_titleMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected