Searched refs:callmethod (Results 1 – 3 of 3) sorted by relevance
/third_party/python/Tools/demo/ |
D | eiffel.py | 68 return self._descr.callmethod(self._inst, args, kwargs) 84 def callmethod(self, inst, args, kwargs): member in EiffelDescriptor
|
/third_party/python/Objects/ |
D | call.c | 547 callmethod(PyThreadState *tstate, PyObject* callable, const char *format, va_list va, int is_size_t) in callmethod() function 577 PyObject *retval = callmethod(tstate, callable, format, va, 0); in PyObject_CallMethod() 603 PyObject *retval = callmethod(tstate, callable, format, va, 0); in PyEval_CallMethod() 627 PyObject *retval = callmethod(tstate, callable, format, va, 0); in _PyObject_CallMethodId() 651 PyObject *retval = callmethod(tstate, callable, format, va, 1); in _PyObject_CallMethod_SizeT() 675 PyObject *retval = callmethod(tstate, callable, format, va, 1); in _PyObject_CallMethodId_SizeT()
|
/third_party/python/Lib/multiprocessing/ |
D | managers.py | 1120 callmethod = object.__getattribute__(self, '_callmethod') 1121 return callmethod('__getattribute__', (key,)) 1125 callmethod = object.__getattribute__(self, '_callmethod') 1126 return callmethod('__setattr__', (key, value)) 1130 callmethod = object.__getattribute__(self, '_callmethod') 1131 return callmethod('__delattr__', (key,))
|