mirror of
https://github.com/correl/SleekXMPP.git
synced 2024-11-24 11:09:58 +00:00
11 lines
192 B
Python
11 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
|