moved seesmic branch to trunk
This commit is contained in:
10
sleekxmpp/xmlstream/matcher/many.py
Normal file
10
sleekxmpp/xmlstream/matcher/many.py
Normal file
@@ -0,0 +1,10 @@
|
||||
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
|
Reference in New Issue
Block a user