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.
30 lines
630 B
30 lines
630 B
#
|
|
# This file is part of pysmi software.
|
|
#
|
|
# Copyright (c) 2015-2019, Ilya Etingof <etingof@gmail.com>
|
|
# License: http://snmplabs.com/pysmi/license.html
|
|
#
|
|
|
|
#
|
|
# Preconfigured sets of parser options.
|
|
# Individual options could be used in certain combinations.
|
|
#
|
|
smiV2 = {}
|
|
|
|
smiV1 = smiV2.copy()
|
|
smiV1.update(
|
|
supportSmiV1Keywords=True,
|
|
supportIndex=True
|
|
)
|
|
|
|
smiV1Relaxed = smiV1.copy()
|
|
smiV1Relaxed.update(
|
|
commaAtTheEndOfImport=True,
|
|
commaAtTheEndOfSequence=True,
|
|
mixOfCommasAndSpaces=True,
|
|
uppercaseIdentifier=True,
|
|
lowcaseIdentifier=True,
|
|
curlyBracesAroundEnterpriseInTrap=True,
|
|
noCells=True
|
|
)
|