Repository URL to install this package:
|
Version:
1:7.26.0-1 ▾
|
datadog-agent
/
opt
/
datadog-agent
/
embedded
/
lib
/
python3.8
/
site-packages
/
pysmi
/
parser
/
dialect.py
|
|---|
#
# 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
)