summaryrefslogtreecommitdiff
path: root/pysnmp/hlapi/__init__.py
diff options
context:
space:
mode:
authorelie <elie>2015-09-27 10:26:25 +0000
committerelie <elie>2015-09-27 10:26:25 +0000
commit5d5673dfcd01a77755c4e4d7897d4c58bf3f2d97 (patch)
treec3d1807de3ae24ca920c092102e9952bb915546d /pysnmp/hlapi/__init__.py
parente7d5f9130ba9312c3d936bed4c11ed094b24bc7c (diff)
downloadpysnmp-git-5d5673dfcd01a77755c4e4d7897d4c58bf3f2d97.tar.gz
* Asyncore and asyncio-based APIs reworked to become functions.
* Asyncio and Twisted API moved entirely into high-level domain to be aligned with other high-level APIs. This WILL BREAK backward compatibility for those apps that use Twisted API.
Diffstat (limited to 'pysnmp/hlapi/__init__.py')
-rw-r--r--pysnmp/hlapi/__init__.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/pysnmp/hlapi/__init__.py b/pysnmp/hlapi/__init__.py
index 7289fb61..3f8bee9a 100644
--- a/pysnmp/hlapi/__init__.py
+++ b/pysnmp/hlapi/__init__.py
@@ -3,3 +3,6 @@ from pysnmp.smi.rfc1902 import *
from pysnmp.hlapi.auth import *
from pysnmp.hlapi.context import *
from pysnmp.entity.engine import *
+
+# default is synchronous asyncore-based API
+from pysnmp.hlapi.asyncore._sync import *