PySMI would fail to compile mibs that uses symbols that are Python reserved keywords.
Because the underlying PySNMP MIB representation is stored in Python files, those symbols are prefixed with pysmi_here.
However, this prefix need to be striped in this check for the compilation to complete. This PR handles this.
PySMI would fail to compile mibs that uses symbols that are Python reserved keywords. Because the underlying PySNMP MIB representation is stored in Python files, those symbols are prefixed with
pysmi_
here. However, this prefix need to be striped in this check for the compilation to complete. This PR handles this.