De las fuentes de Python object.c :
/* Test whether an object can be called */
int
PyCallable_Check(PyObject *x)
{
if (x == NULL)
return 0;
if (PyInstance_Check(x)) {
PyObject *call = PyObject_GetAttrString(x, "__call__");
if (call == NULL) {
PyErr_Clear();
return 0;
}
/* Could test recursively but don't, for fear of endless
recursion if some joker sets self.__call__ = self */
Py_DECREF(call);
return 1;
}
else {
return x->ob_type->tp_call != NULL;
}
}
Dice:
- Si un objeto es una instancia de alguna clase, es invocable si tiene
__call__
atributo.
- De lo contrario, el objeto
x
es invocable si x->ob_type->tp_call != NULL
Descipción de tp_call
campo :
ternaryfunc tp_call
Un puntero opcional a una función que implementa la llamada al objeto. Esto debería ser NULL si el objeto no es invocable. La firma es la misma que para PyObject_Call (). Este campo es heredado por subtipos.
Siempre puede usar la callable
función incorporada para determinar si el objeto dado es invocable o no; o mejor aún, simplemente llámalo y captura TypeError
más tarde callable
se elimina en Python 3.0 y 3.1, use callable = lambda o: hasattr(o, '__call__')
o isinstance(o, collections.Callable)
.
Ejemplo, una implementación de caché simplista:
class Cached:
def __init__(self, function):
self.function = function
self.cache = {}
def __call__(self, *args):
try: return self.cache[args]
except KeyError:
ret = self.cache[args] = self.function(*args)
return ret
Uso:
@Cached
def ack(x, y):
return ack(x-1, ack(x, y-1)) if x*y else (x + y + 1)
Ejemplo de biblioteca estándar, archivo site.py
, definición de funciones integradas exit()
y quit()
:
class Quitter(object):
def __init__(self, name):
self.name = name
def __repr__(self):
return 'Use %s() or %s to exit' % (self.name, eof)
def __call__(self, code=None):
# Shells like IDLE catch the SystemExit, but listen when their
# stdin wrapper is closed.
try:
sys.stdin.close()
except:
pass
raise SystemExit(code)
__builtin__.quit = Quitter('quit')
__builtin__.exit = Quitter('exit')