blob: 8185bdc5ca4178aa6cfac3929192b1717a3f618b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
"""
SleekXMPP: The Sleek XMPP Library
Copyright (C) 2010 Nathanael C. Fritz
This file is part of SleekXMPP.
See the file license.txt for copying permission.
"""
class MatcherBase(object):
def __init__(self, criteria):
self._criteria = criteria
def match(self, xml):
return False
|