Depuis les sources 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;
}
}
Ça dit:
- Si un objet est une instance d'une classe, il peut être appelé s'il n'a pas d'
__call__
attribut.
- Sinon, l'objet
x
peut être appelé si x->ob_type->tp_call != NULL
Description du tp_call
champ :
ternaryfunc tp_call
Un pointeur facultatif vers une fonction qui implémente l'appel de l'objet. Cela devrait être NULL si l'objet n'est pas appelable. La signature est la même que pour PyObject_Call (). Ce champ est hérité par des sous-types.
Vous pouvez toujours utiliser la callable
fonction intégrée pour déterminer si un objet donné peut être appelé ou non; ou mieux encore appelez-le et attrapez TypeError
plus tard. callable
est supprimé dans Python 3.0 et 3.1, utilisez callable = lambda o: hasattr(o, '__call__')
ou isinstance(o, collections.Callable)
.
Exemple, une implémentation de cache simpliste:
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
Usage:
@Cached
def ack(x, y):
return ack(x-1, ack(x, y-1)) if x*y else (x + y + 1)
Exemple de bibliothèque standard, fichier site.py
, définition de fonction intégrée exit()
et quit()
fonctions:
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')