summaryrefslogtreecommitdiff
path: root/pysnmp/entity
diff options
context:
space:
mode:
authorIlya Etingof <etingof@gmail.com>2016-06-12 14:07:24 +0200
committerIlya Etingof <etingof@gmail.com>2016-06-12 14:07:24 +0200
commit91a1292067bfda55320f188eb1c8cce4af7a3266 (patch)
treec73fd39bf0eaf76207efdc6ed4ed191e50f31bf9 /pysnmp/entity
parent912517cb2d79fddc512a1304c18a9b20cb20cf80 (diff)
downloadpysnmp-git-91a1292067bfda55320f188eb1c8cce4af7a3266.tar.gz
converted to new-style classes
Diffstat (limited to 'pysnmp/entity')
-rw-r--r--pysnmp/entity/engine.py2
-rw-r--r--pysnmp/entity/observer.py4
-rw-r--r--pysnmp/entity/rfc3413/cmdgen.py2
-rw-r--r--pysnmp/entity/rfc3413/cmdrsp.py2
-rw-r--r--pysnmp/entity/rfc3413/context.py2
-rw-r--r--pysnmp/entity/rfc3413/ntforg.py2
-rw-r--r--pysnmp/entity/rfc3413/ntfrcv.py2
-rw-r--r--pysnmp/entity/rfc3413/oneliner/cmdgen.py4
-rw-r--r--pysnmp/entity/rfc3413/oneliner/ntforg.py6
9 files changed, 13 insertions, 13 deletions
diff --git a/pysnmp/entity/engine.py b/pysnmp/entity/engine.py
index 96646286..531b235b 100644
--- a/pysnmp/entity/engine.py
+++ b/pysnmp/entity/engine.py
@@ -23,7 +23,7 @@ from pysnmp import error
__all__ = ['SnmpEngine']
-class SnmpEngine:
+class SnmpEngine(object):
"""Creates SNMP engine object.
SNMP engine object is central in SNMP v3 architecture. It is an umbrella
diff --git a/pysnmp/entity/observer.py b/pysnmp/entity/observer.py
index 2e137129..d0f853f1 100644
--- a/pysnmp/entity/observer.py
+++ b/pysnmp/entity/observer.py
@@ -7,12 +7,12 @@
from pysnmp import error
-class MetaObserver:
+class MetaObserver(object):
"""This is a simple facility for exposing internal SNMP Engine
working details to pysnmp applications. These details are
basically local scope variables at a fixed point of execution.
- Two modes of operations are offered:
+ Two modes of operations are offered(object):
1. App can request an execution point context by execution point ID.
2. App can register its callback function (and context) to be invoked
once execution reaches specified point. All local scope variables
diff --git a/pysnmp/entity/rfc3413/cmdgen.py b/pysnmp/entity/rfc3413/cmdgen.py
index e174c379..8af6a644 100644
--- a/pysnmp/entity/rfc3413/cmdgen.py
+++ b/pysnmp/entity/rfc3413/cmdgen.py
@@ -40,7 +40,7 @@ def getNextVarBinds(varBinds, origVarBinds=None):
return errorIndication, rspVarBinds
-class CommandGenerator:
+class CommandGenerator(object):
_null = univ.Null('')
def __init__(self):
diff --git a/pysnmp/entity/rfc3413/cmdrsp.py b/pysnmp/entity/rfc3413/cmdrsp.py
index 60c64ad3..456d81bd 100644
--- a/pysnmp/entity/rfc3413/cmdrsp.py
+++ b/pysnmp/entity/rfc3413/cmdrsp.py
@@ -13,7 +13,7 @@ from pysnmp import debug
# 3.2
-class CommandResponderBase:
+class CommandResponderBase(object):
acmID = 3 # default MIB access control method to use
pduTypes = ()
diff --git a/pysnmp/entity/rfc3413/context.py b/pysnmp/entity/rfc3413/context.py
index e0b73ef4..09039b04 100644
--- a/pysnmp/entity/rfc3413/context.py
+++ b/pysnmp/entity/rfc3413/context.py
@@ -10,7 +10,7 @@ from pysnmp import error
from pysnmp import debug
-class SnmpContext:
+class SnmpContext(object):
def __init__(self, snmpEngine, contextEngineId=None):
snmpEngineId, = snmpEngine.msgAndPduDsp.mibInstrumController.mibBuilder.importSymbols('__SNMP-FRAMEWORK-MIB',
'snmpEngineID')
diff --git a/pysnmp/entity/rfc3413/ntforg.py b/pysnmp/entity/rfc3413/ntforg.py
index c9bd69c4..3001d207 100644
--- a/pysnmp/entity/rfc3413/ntforg.py
+++ b/pysnmp/entity/rfc3413/ntforg.py
@@ -18,7 +18,7 @@ from pysnmp import debug
getNextHandle = nextid.Integer(0x7fffffff)
-class NotificationOriginator:
+class NotificationOriginator(object):
acmID = 3 # default MIB access control method to use
def __init__(self, snmpContext=None):
diff --git a/pysnmp/entity/rfc3413/ntfrcv.py b/pysnmp/entity/rfc3413/ntfrcv.py
index 55b2841c..1c9f2d41 100644
--- a/pysnmp/entity/rfc3413/ntfrcv.py
+++ b/pysnmp/entity/rfc3413/ntfrcv.py
@@ -13,7 +13,7 @@ from pysnmp import debug
# 3.4
-class NotificationReceiver:
+class NotificationReceiver(object):
pduTypes = (v1.TrapPDU.tagSet, v2c.SNMPv2TrapPDU.tagSet,
v2c.InformRequestPDU.tagSet)
diff --git a/pysnmp/entity/rfc3413/oneliner/cmdgen.py b/pysnmp/entity/rfc3413/oneliner/cmdgen.py
index 411fc40c..791c185d 100644
--- a/pysnmp/entity/rfc3413/oneliner/cmdgen.py
+++ b/pysnmp/entity/rfc3413/oneliner/cmdgen.py
@@ -19,7 +19,7 @@ __all__ = ['AsynCommandGenerator', 'CommandGenerator', 'MibVariable']
MibVariable = ObjectIdentity
-class AsynCommandGenerator:
+class AsynCommandGenerator(object):
_null = univ.Null('')
vbProcessor = CommandGeneratorVarBinds()
@@ -160,7 +160,7 @@ class AsynCommandGenerator:
asyncBulkCmd = bulkCmd
-class CommandGenerator:
+class CommandGenerator(object):
_null = univ.Null('')
def __init__(self, snmpEngine=None, asynCmdGen=None):
diff --git a/pysnmp/entity/rfc3413/oneliner/ntforg.py b/pysnmp/entity/rfc3413/oneliner/ntforg.py
index 2436b5ba..c6a140bb 100644
--- a/pysnmp/entity/rfc3413/oneliner/ntforg.py
+++ b/pysnmp/entity/rfc3413/oneliner/ntforg.py
@@ -22,7 +22,7 @@ __all__ = ['AsynNotificationOriginator',
MibVariable = ObjectIdentity
-class ErrorIndicationReturn:
+class ErrorIndicationReturn(object):
def __init__(self, *vars):
self.__vars = vars
@@ -39,7 +39,7 @@ class ErrorIndicationReturn:
return str(self.__vars[0])
-class AsynNotificationOriginator:
+class AsynNotificationOriginator(object):
vbProcessor = NotificationOriginatorVarBinds()
lcd = NotificationOriginatorLcdConfigurator()
@@ -137,7 +137,7 @@ class AsynNotificationOriginator:
asyncSendNotification = sendNotification
-class NotificationOriginator:
+class NotificationOriginator(object):
vbProcessor = NotificationOriginatorVarBinds()
def __init__(self, snmpEngine=None, snmpContext=None, asynNtfOrg=None):