Dari sumber Python objek.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;
}
}
Ia mengatakan:
- Jika suatu objek adalah turunan dari beberapa kelas maka itu dapat dipanggil jika memiliki
__call__
atribut.
- Kalau tidak, objek
x
itu bisa dipanggil iff x->ob_type->tp_call != NULL
Desciption dari tp_call
bidang :
ternaryfunc tp_call
Pointer opsional ke fungsi yang mengimplementasikan pemanggilan objek. Ini harus NULL jika objek tidak dapat dipanggil. Tanda tangan sama dengan untuk PyObject_Call (). Bidang ini diwarisi oleh subtipe.
Anda selalu dapat menggunakan callable
fungsi bawaan untuk menentukan apakah objek yang diberikan dapat dipanggil atau tidak; atau lebih baik lagi panggil saja dan tangkap TypeError
nanti. callable
dihapus dalam Python 3.0 dan 3.1, gunakan callable = lambda o: hasattr(o, '__call__')
atau isinstance(o, collections.Callable)
.
Contoh, implementasi cache yang disederhanakan:
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
Pemakaian:
@Cached
def ack(x, y):
return ack(x-1, ack(x, y-1)) if x*y else (x + y + 1)
Contoh dari perpustakaan standar, file site.py
, definisi built-in exit()
dan quit()
fungsi:
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')