1__doc__ = u"""
2>>> g = Grail()
3>>> g("spam", 42, ["tomato", "sandwich"])
4Grail called with: spam 42 ['tomato', 'sandwich']
5"""
6
7cdef class Grail:
8
9    def __call__(self, x, y, z):
10        print u"Grail called with:", x, y, z
11