slixmpp/sleekxmpp/xmlstream/matcher/base.py

9 lines
128 B
Python
Raw Normal View History

2009-06-03 22:56:51 +00:00
class MatcherBase(object):
def __init__(self, criteria):
self._criteria = criteria
def match(self, xml):
return False