Searched refs:callmethod (Results 1 – 5 of 5) sorted by relevance
/external/python/cpython2/Demo/newmetaclasses/ |
D | Eiffel.py | 59 return self._descr.callmethod(self._inst, args, kwargs) 74 def callmethod(self, inst, args, kwargs): member in EiffelDescriptor
|
/external/python/cpython3/Tools/demo/ |
D | eiffel.py | 68 return self._descr.callmethod(self._inst, args, kwargs) 84 def callmethod(self, inst, args, kwargs): member in EiffelDescriptor
|
/external/python/cpython2/Lib/multiprocessing/ |
D | managers.py | 1022 callmethod = object.__getattribute__(self, '_callmethod') 1023 return callmethod('__getattribute__', (key,)) 1027 callmethod = object.__getattribute__(self, '_callmethod') 1028 return callmethod('__setattr__', (key, value)) 1032 callmethod = object.__getattribute__(self, '_callmethod') 1033 return callmethod('__delattr__', (key,))
|
/external/python/cpython3/Objects/ |
D | call.c | 1016 callmethod(PyObject* callable, const char *format, va_list va, int is_size_t) in callmethod() function 1046 retval = callmethod(callable, format, va, 0); in PyObject_CallMethod() 1072 retval = callmethod(callable, format, va, 0); in PyEval_CallMethod() 1096 retval = callmethod(callable, format, va, 0); in _PyObject_CallMethodId() 1120 retval = callmethod(callable, format, va, 1); in _PyObject_CallMethod_SizeT() 1145 retval = callmethod(callable, format, va, 1); in _PyObject_CallMethodId_SizeT()
|
/external/python/cpython3/Lib/multiprocessing/ |
D | managers.py | 1098 callmethod = object.__getattribute__(self, '_callmethod') 1099 return callmethod('__getattribute__', (key,)) 1103 callmethod = object.__getattribute__(self, '_callmethod') 1104 return callmethod('__setattr__', (key, value)) 1108 callmethod = object.__getattribute__(self, '_callmethod') 1109 return callmethod('__delattr__', (key,))
|