Dalle fonti di 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:
- Se un oggetto è un'istanza di qualche classe, è richiamabile se ha un
__call__
attributo.
- Altrimenti l'oggetto
x
è richiamabile iff x->ob_type->tp_call != NULL
Descrizione del tp_call
campo :
ternaryfunc tp_call
Un puntatore facoltativo a una funzione che implementa la chiamata dell'oggetto. Dovrebbe essere NULL se l'oggetto non è richiamabile. La firma è la stessa di PyObject_Call (). Questo campo è ereditato dai sottotipi.
È sempre possibile utilizzare la callable
funzione integrata per determinare se un determinato oggetto è richiamabile o meno; o meglio, basta chiamarlo e catturare TypeError
più tardi. callable
viene rimosso in Python 3.0 e 3.1, utilizzare callable = lambda o: hasattr(o, '__call__')
o isinstance(o, collections.Callable)
.
Esempio, un'implementazione della cache semplicistica:
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)
Esempio da libreria standard, file site.py
, definizione di built-in exit()
e quit()
funzioni:
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')