Displaying 1 result from an estimated 1 matches for "add_matchspy".
2010 Dec 01
2
Using a subclass of MatchSpy in Python bindings
...)
>>> class MyMatchSpy(xapian.MatchSpy):
... def __init__(self):
... pass
... def __call__(self, *args, **kw):
... print "called with", args, kw
...
>>> ms = MyMatchSpy()
>>> enquire = xapian.Enquire(database)
>>> enquire.add_matchspy(ms)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/usr/lib/python2.6/dist-packages/xapian/__init__.py", line
6920, in _enquire_match_spy_add
_enquire_add_matchspy_orig(self, decider)
TypeError: in method 'Enquire_add_matchsp...