1# 2# This file is part of pysmi software. 3# 4# Copyright (c) 2015-2019, Ilya Etingof <etingof@gmail.com> 5# License: http://snmplabs.com/pysmi/license.html 6# 7from pysmi.parser.base import AbstractParser 8 9 10class NullParser(AbstractParser): 11 def __init__(self, startSym='mibFile', tempdir=''): 12 pass 13 14 def reset(self): 15 pass 16 17 def parse(self, data, **kwargs): 18 return [] 19