Parser.py 192 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 """ @author Georg Hopp """ class Parser(object): def __init__(self): pass def parse(self, message, data): return len(data) # vim: set ft=python et ts=8 sw=4 sts=4: