1
0
Fork 0
mirror of https://github.com/correl/SleekXMPP.git synced 2025-03-20 01:09:26 -09:00
SleekXMPP/sleekxmpp/xmlstream/matcher/many.py

11 lines
192 B
Python
Raw Normal View History

2009-06-03 22:56:51 +00:00
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