Nas fontes do 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;
}
}
Diz:
- Se um objeto é uma instância de alguma classe, é possível chamar se tiver
__call__
atributo.
x
Caso contrário, o objeto pode ser chamado se x->ob_type->tp_call != NULL
Descrição do tp_call
campo :
ternaryfunc tp_call
Um ponteiro opcional para uma função que implementa a chamada do objeto. Isso deve ser NULL se o objeto não puder ser chamado. A assinatura é a mesma que para PyObject_Call (). Este campo é herdado por subtipos.
Você sempre pode usar a callable
função interna para determinar se um determinado objeto é chamador ou não; ou melhor ainda, basta ligar e pegar TypeError
mais tarde. callable
é removido no Python 3.0 e 3.1, use callable = lambda o: hasattr(o, '__call__')
ou isinstance(o, collections.Callable)
.
Exemplo, uma implementação simplista de cache:
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)
Exemplo de biblioteca padrão, arquivo site.py
, definição de embutidos exit()
e quit()
funções:
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')