You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
350 B
13 lines
350 B
#
|
|
# This file is part of pysmi software.
|
|
#
|
|
# Copyright (c) 2015-2019, Ilya Etingof <etingof@gmail.com>
|
|
# License: http://snmplabs.com/pysmi/license.html
|
|
#
|
|
from pysmi.parser.smi import parserFactory
|
|
from pysmi.parser.dialect import smiV1Relaxed
|
|
|
|
# compatibility stub
|
|
SmiV1CompatParser = parserFactory(**smiV1Relaxed)
|
|
SmiStarParser = SmiV1CompatParser
|