summaryrefslogtreecommitdiff
path: root/pysnmp/carrier
diff options
context:
space:
mode:
authorIlya Etingof <etingof@gmail.com>2019-02-10 18:30:59 +0100
committerGitHub <noreply@github.com>2019-02-10 18:30:59 +0100
commit5c64b499c2cf6f168970aa7ae51fe4997cdd89fc (patch)
tree54a6e95198f22cf293923406f46f4eacc0f10155 /pysnmp/carrier
parentcc2632d6d5c0096e0b563fb15750562c281af1eb (diff)
downloadpysnmp-git-5c64b499c2cf6f168970aa7ae51fe4997cdd89fc.tar.gz
Officially remove Python < 2.6 support (#239)
Perhaps previous commits have already broken older Python support. This commit mostly declares Python 2.6+ support.
Diffstat (limited to 'pysnmp/carrier')
-rw-r--r--pysnmp/carrier/sockmsg.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/pysnmp/carrier/sockmsg.py b/pysnmp/carrier/sockmsg.py
index deab4b6d..e36bc85a 100644
--- a/pysnmp/carrier/sockmsg.py
+++ b/pysnmp/carrier/sockmsg.py
@@ -20,7 +20,6 @@ import sys
from pysnmp import debug
if sys.version_info[:2] < (3, 3):
- # noinspection PyUnusedLocal
def getRecvFrom(addressType):
raise error.CarrierError('sendmsg()/recvmsg() interface is not supported by this OS and/or Python version')