Home
last modified time | relevance | path

Searched refs:auto_rebind (Results 1 – 4 of 4) sorted by relevance

/vim-8.2.3635/src/testdir/
H A Dtest_python2.vim2199 cb.append('a.auto_rebind: ' + s(a.auto_rebind))
2200 cb.append('pa1.auto_rebind: ' + s(pa1.auto_rebind))
2201 cb.append('pa2.auto_rebind: ' + s(pa2.auto_rebind))
2202 cb.append('pa3.auto_rebind: ' + s(pa3.auto_rebind))
2203 cb.append('pa4.auto_rebind: ' + s(pa4.auto_rebind))
2204 cb.append('sa.auto_rebind: ' + s(sa.auto_rebind))
2205 cb.append('psa1.auto_rebind: ' + s(psa1.auto_rebind))
2206 cb.append('psa2.auto_rebind: ' + s(psa2.auto_rebind))
2207 cb.append('psa3.auto_rebind: ' + s(psa3.auto_rebind))
2208 cb.append('psa4.auto_rebind: ' + s(psa4.auto_rebind))
[all …]
H A Dtest_python3.vim2386 cb.append('a.auto_rebind: ' + s(a.auto_rebind))
2387 cb.append('pa1.auto_rebind: ' + s(pa1.auto_rebind))
2388 cb.append('pa2.auto_rebind: ' + s(pa2.auto_rebind))
2389 cb.append('pa3.auto_rebind: ' + s(pa3.auto_rebind))
2390 cb.append('pa4.auto_rebind: ' + s(pa4.auto_rebind))
2391 cb.append('sa.auto_rebind: ' + s(sa.auto_rebind))
2392 cb.append('psa1.auto_rebind: ' + s(psa1.auto_rebind))
2393 cb.append('psa2.auto_rebind: ' + s(psa2.auto_rebind))
2394 cb.append('psa3.auto_rebind: ' + s(psa3.auto_rebind))
2395 cb.append('psa4.auto_rebind: ' + s(psa4.auto_rebind))
[all …]
/vim-8.2.3635/src/
H A Dif_py_both.h2941 int auto_rebind; member
2951 dict_T *selfdict, int auto_rebind) in FunctionNew() argument
3004 self->auto_rebind = selfdict == NULL ? TRUE : auto_rebind; in FunctionNew()
3025 int auto_rebind = TRUE; in FunctionConstructor() local
3069 auto_rebind = FALSE; in FunctionConstructor()
3073 auto_rebind = PyObject_IsTrue(autoRebindObject); in FunctionConstructor()
3074 if (auto_rebind == -1) in FunctionConstructor()
3093 self = FunctionNew(subtype, name, argc, argv, selfdict, auto_rebind); in FunctionConstructor()
3148 return self->auto_rebind in FunctionAttr()
3185 pt->pt_auto = self->auto_rebind || !exported; in set_partial()
[all …]
/vim-8.2.3635/runtime/doc/
H A Dif_pyth.txt698 auto_rebind Boolean. True if partial created from this Python object
702 difference between `dict.func` (auto_rebind=True) and
703 `function(dict.func,dict)` (auto_rebind=False). This
706 Constructor additionally accepts `args`, `self` and `auto_rebind`
708 a partial, see |function()|. `auto_rebind` is only used when `self`