slixmpp/sleekxmpp/xmlstream/matcher/many.py
2009-06-03 22:56:51 +00:00

10 lines
192 B
Python

from . import base
from xml.etree import cElementTree
class MatchMany(base.MatcherBase):
def match(self, xml):
for m in self._criteria:
if m.match(xml):
return True
return False