Searched refs:kwargs (Results 1 – 8 of 8) sorted by relevance
| /vim-8.2.3635/src/testdir/ |
| H A D | test_makeencoding.py | 21 def get_text_writer(fo, **kwargs): argument 22 kw = dict(kwargs)
|
| H A D | test_tagjump.vim | 658 \ 'provision Xtest.py /^ def provision(self, **kwargs):$/;" m line:1 language:Python class:Foo', 659 \ 'provision Xtest.py /^ def provision(self, **kwargs):$/;" m line:3 language:Python class:Bar', 662 \ ' def provision(self, **kwargs):', 664 \ ' def provision(self, **kwargs):',
|
| H A D | test_python2.vim | 1990 def ecall(out_prefix, func, *args, **kwargs): 1993 ret = func(*args, **kwargs) 2690 cb.append(">>> kwargs") 3031 >>> kwargs
|
| H A D | test_python3.vim | 2177 def ecall(out_prefix, func, *args, **kwargs): 2180 ret = func(*args, **kwargs) 2878 cb.append(">>> kwargs") 3219 >>> kwargs
|
| /vim-8.2.3635/src/ |
| H A D | if_py_both.h | 1007 if (!(ret = PyObject_Call(_chdir, args, kwargs))) in _VimChdir() 1055 return _VimChdir(py_chdir, args, kwargs); in VimChdir() 1061 return _VimChdir(py_fchdir, args, kwargs); in VimFchdir() 1620 if (kwargs || PyTuple_Size(args)) in DictionaryConstructor() 1623 if (!(tmp = DictionaryUpdate(self, args, kwargs))) in DictionaryConstructor() 2038 if (kwargs) in DictionaryUpdate() 2042 if (ConvertFromPyMapping(kwargs, &tv) == -1) in DictionaryUpdate() 2341 if (kwargs) in ListConstructor() 3030 if (kwargs != NULL) in FunctionConstructor() 3039 argsObject = PyDict_GetItemString(kwargs, "args"); in FunctionConstructor() [all …]
|
| /vim-8.2.3635/runtime/doc/ |
| H A D | if_pyth.txt | 215 vim.chdir(*args, **kwargs) *python-chdir* 216 vim.fchdir(*args, **kwargs) *python-fchdir* 619 update(iterable), update(dictionary), update(**kwargs) 646 d.update(e='f') # .update(**kwargs)
|
| /vim-8.2.3635/runtime/autoload/ |
| H A D | python3complete.vim | 19 " * Fixed parsing of *args and **kwargs type arguments
|
| H A D | pythoncomplete.vim | 17 " * Fixed parsing of *args and **kwargs type arguments
|